Skip to content

Commit

Permalink
test/cql-pytest: remove skip_with_tablets fixture
Browse files Browse the repository at this point in the history
All tests that used it are fixed, and we should not add any new tests
failing with tablets from now on, so remove.
  • Loading branch information
denesb committed Feb 21, 2024
1 parent 8df82d4 commit ca58590
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions test/cql-pytest/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,11 +258,6 @@ def has_tablets(cql):
with new_test_keyspace(cql, " WITH REPLICATION = {'class' : 'NetworkTopologyStrategy', 'replication_factor': 1}") as keyspace:
return keyspace_has_tablets(cql, keyspace)

@pytest.fixture(scope="function")
def skip_with_tablets(has_tablets):
if has_tablets:
pytest.skip("Test may crash with tablets experimental feature on")

@pytest.fixture(scope="function")
def skip_without_tablets(scylla_only, has_tablets):
if not has_tablets:
Expand Down

0 comments on commit ca58590

Please sign in to comment.