diff --git a/integration_tests/conftest.py b/integration_tests/conftest.py index d531d3ee4e..6cb880b22c 100644 --- a/integration_tests/conftest.py +++ b/integration_tests/conftest.py @@ -19,6 +19,7 @@ def pytest_configure(config): config.addinivalue_line("markers", "ibc_rly_evm: marks ibc_rly_evm tests") config.addinivalue_line("markers", "ibc_rly_gas: marks ibc relayer gas tests") config.addinivalue_line("markers", "ibc_timeout: marks ibc timeout tests") + config.addinivalue_line("markers", "gov: marks gov related tests") def pytest_collection_modifyitems(items, config): diff --git a/integration_tests/test_basic.py b/integration_tests/test_basic.py index 7057644e67..cd18aad705 100644 --- a/integration_tests/test_basic.py +++ b/integration_tests/test_basic.py @@ -857,10 +857,12 @@ def test_replay_protection(cronos): w3.eth.send_raw_transaction(HexBytes(raw)) +@pytest.mark.gov def test_submit_any_proposal(cronos, tmp_path): submit_any_proposal(cronos, tmp_path) +@pytest.mark.gov def test_submit_send_enabled(cronos, tmp_path): # check bank send enable cli = cronos.cosmos_cli() diff --git a/integration_tests/test_broadcast.py b/integration_tests/test_broadcast.py index f889721aaf..e063b092ac 100644 --- a/integration_tests/test_broadcast.py +++ b/integration_tests/test_broadcast.py @@ -5,6 +5,8 @@ from .network import setup_custom_cronos from .utils import submit_any_proposal +pytestmark = pytest.mark.gov + @pytest.fixture(scope="module") def custom_cronos(tmp_path_factory): diff --git a/integration_tests/test_gov_update_params.py b/integration_tests/test_gov_update_params.py index 13e5bfafe2..365b387a5f 100644 --- a/integration_tests/test_gov_update_params.py +++ b/integration_tests/test_gov_update_params.py @@ -1,7 +1,10 @@ import json +import pytest from .utils import approve_proposal +pytestmark = pytest.mark.gov + def test_gov_update_params(cronos, tmp_path): cli = cronos.cosmos_cli()