merge: ci gate deploys on passing tags + fix markets feature flag test

This commit is contained in:
Deeman
2026-02-24 03:52:20 +01:00
3 changed files with 58 additions and 6 deletions

View File

@@ -117,7 +117,7 @@ class TestMigration0019:
assert "description" in cols
assert "updated_at" in cols
def test_seeds_markets_enabled(self, tmp_path):
def test_seeds_markets_disabled(self, tmp_path):
db_path = str(tmp_path / "test.db")
migrate(db_path)
conn = sqlite3.connect(db_path)
@@ -125,7 +125,7 @@ class TestMigration0019:
"SELECT enabled FROM feature_flags WHERE name = 'markets'"
).fetchone()
conn.close()
assert row is not None and row[0] == 1
assert row is not None and row[0] == 0
def test_seeds_payments_disabled(self, tmp_path):
db_path = str(tmp_path / "test.db")