We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36f8cc commit cdf67faCopy full SHA for cdf67fa
cardano_node_tests/tests/test_dbsync_config.py
@@ -21,6 +21,7 @@
21
reason="db-sync config tests can run on a single cluster only",
22
),
23
pytest.mark.dbsync_config,
24
+ pytest.mark.needs_dbsync,
25
]
26
27
@@ -109,7 +110,6 @@ class TestDBSyncConfig:
109
110
"""Basic tests for DB-Sync Config."""
111
112
@allure.link(helpers.get_vcs_link())
- @pytest.mark.dbsync_config
113
def test_basic_tx_out(
114
self,
115
db_sync_manager: db_sync.DBSyncManager,
@@ -150,7 +150,6 @@ def test_basic_tx_out(
150
)
151
152
153
154
@pytest.mark.parametrize(
155
("tx_cbor_value", "expected_state"),
156
[
@@ -171,7 +170,6 @@ def test_cbor(
171
170
check_dbsync_state({db_sync.Table.TX_CBOR: expected_state})
172
173
174
175
176
("multi_asset_enable", "expected_state"),
177
[(True, TableCondition.NOT_EMPTY), (False, TableCondition.EMPTY)],
0 commit comments