Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github actions: run integration test on cassandra #339

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,24 @@ jobs:
- uses: actions/setup-python@v5
name: Install Python ${{ matrix.python-version }}
with:
default: 2.7.14
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Test with pytest
- name: Test with scylla
run: |
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
export SCYLLA_VERSION='release:6.2'
./scripts/run_integration_test.sh tests/integration/standard/ tests/integration/cqlengine/

- name: Test tablets
- name: Test with scylla - tablets
run: |
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
export SCYLLA_VERSION='release:6.2'
./scripts/run_integration_test.sh tests/integration/experiments/

- name: Test with cassandra
run: |
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
export CASSANDRA_VERSION='4.1.5'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not 4.1.7 (latest 4.1.x) ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cause the the version that was available when I started this effort

./scripts/run_integration_test.sh tests/integration/standard/
18 changes: 13 additions & 5 deletions scripts/run_integration_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,19 @@ pip install awscli
pip install https://github.com/scylladb/scylla-ccm/archive/master.zip

# download version
if [[ -n "${SCYLLA_VERSION}" ]]; then
ccm create scylla-driver-temp -n 1 --scylla --version ${SCYLLA_VERSION}
ccm remove
export MAPPED_SCYLLA_VERSION=3.11.4
unset CASSANDRA_VERSION
fi
if [[ -n "${CASSANDRA_VERSION}" ]]; then
ccm create cassandra-driver-temp -n 1 --version ${CASSANDRA_VERSION}
ccm remove
export MAPPED_CASSANDRA_VERSION=$CASSANDRA_VERSION
unset SCYLLA_VERSION
fi

ccm create scylla-driver-temp -n 1 --scylla --version ${SCYLLA_VERSION}
ccm remove

env
# run test

PROTOCOL_VERSION=4 pytest -rf $*

15 changes: 12 additions & 3 deletions tests/integration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,12 +394,13 @@ def _id_and_mark(f):
reason='Scylla does not support custom payloads. Cassandra requires native protocol v4.0+')
xfail_scylla = lambda reason, *args, **kwargs: pytest.mark.xfail(SCYLLA_VERSION is not None, reason=reason, *args, **kwargs)
incorrect_test = lambda reason='This test seems to be incorrect and should be fixed', *args, **kwargs: pytest.mark.xfail(reason=reason, *args, **kwargs)
scylla_only = pytest.mark.skipif(SCYLLA_VERSION is None, reason='Scylla only test')

pypy = unittest.skipUnless(platform.python_implementation() == "PyPy", "Test is skipped unless it's on PyPy")
requiresmallclockgranularity = unittest.skipIf("Windows" in platform.system() or "asyncore" in EVENT_LOOP_MANAGER,
"This test is not suitible for environments with large clock granularity")
requiressimulacron = unittest.skipIf(SIMULACRON_JAR is None or CASSANDRA_VERSION < Version("2.1"), "Simulacron jar hasn't been specified or C* version is 2.0")
requirecassandra = unittest.skipIf(DSE_VERSION, "Cassandra required")
requirecassandra = unittest.skipIf(DSE_VERSION or SCYLLA_VERSION, "Cassandra required")
notdse = unittest.skipIf(DSE_VERSION, "DSE not supported")
requiredse = unittest.skipUnless(DSE_VERSION, "DSE required")
requirescloudproxy = unittest.skipIf(CLOUD_PROXY_PATH is None, "Cloud Proxy path hasn't been specified")
Expand Down Expand Up @@ -629,8 +630,16 @@ def use_cluster(cluster_name, nodes, ipformat=None, start=True, workloads=None,
else:
CCM_CLUSTER = CCMCluster(path, cluster_name, **ccm_options)
CCM_CLUSTER.set_configuration_options({'start_native_transport': True})
if Version(cassandra_version) >= Version('2.2'):
CCM_CLUSTER.set_configuration_options({'enable_user_defined_functions': True})
if Version(cassandra_version) >= Version('4.1'):
CCM_CLUSTER.set_configuration_options({
'user_defined_functions_enabled': True,
'scripted_user_defined_functions_enabled': True,
'materialized_views_enabled': True,
'sasi_indexes_enabled': True,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need to enable sasi_indexes_enabled ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't have a clue, it's just same as the driver test was doing before for configuring cassandra, but in a new syntax.

'transient_replication_enabled': True,
})
elif Version(cassandra_version) >= Version('2.2'):
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we ever test earlier than 2.2 versions?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so far we didn't test cassandra at all, for sure we haven't test anything else but 4.1.5 we are testing now.

CCM_CLUSTER.set_configuration_options({'user_defined_functions_enabled': True})
if Version(cassandra_version) >= Version('3.0'):
CCM_CLUSTER.set_configuration_options({'enable_scripted_user_defined_functions': True})
if Version(cassandra_version) >= Version('4.0-a'):
Expand Down
5 changes: 3 additions & 2 deletions tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ def cleanup_clusters():
yield

if not os.environ.get('DISABLE_CLUSTER_CLEANUP'):
for cluster_name in [CLUSTER_NAME, SINGLE_NODE_CLUSTER_NAME, MULTIDC_CLUSTER_NAME,
'shared_aware', 'sni_proxy', 'test_ip_change']:
for cluster_name in [CLUSTER_NAME, SINGLE_NODE_CLUSTER_NAME, MULTIDC_CLUSTER_NAME, 'cluster_tests', 'ipv6_test_cluster',
'shared_aware', 'sni_proxy', 'test_ip_change', 'tablets', 'test_down_then_removed',
'test_concurrent_schema_change_and_node_kill', 'test_down_then_removed']:
try:
cluster = CCMClusterFactory.load(ccm_path, cluster_name)
logging.debug("Using external CCM cluster {0}".format(cluster.name))
Expand Down
9 changes: 7 additions & 2 deletions tests/integration/standard/test_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import subprocess

import unittest
import pytest

from collections import deque
from copy import copy
Expand Down Expand Up @@ -42,7 +43,9 @@
from tests.integration import use_cluster, get_server_versions, CASSANDRA_VERSION, \
execute_until_pass, execute_with_long_wait_retry, get_node, MockLoggingHandler, get_unsupported_lower_protocol, \
get_unsupported_upper_protocol, lessthanprotocolv3, protocolv6, local, CASSANDRA_IP, greaterthanorequalcass30, \
lessthanorequalcass40, DSE_VERSION, TestCluster, PROTOCOL_VERSION, xfail_scylla, incorrect_test
lessthanorequalcass40, DSE_VERSION, TestCluster, PROTOCOL_VERSION, xfail_scylla, incorrect_test, SCYLLA_VERSION, \
EVENT_LOOP_MANAGER

from tests.integration.util import assert_quiescent_pool_state
import sys

Expand Down Expand Up @@ -752,6 +755,7 @@ def _warning_are_issued_when_auth(self, auth_provider):
mock_handler.get_message_count("debug", "Got ReadyMessage on new connection")
)

@pytest.mark.xfail(reason="test not stable on cassandra", condition=EVENT_LOOP_MANAGER=="asyncio" and SCYLLA_VERSION is None, strict=False)
def test_idle_heartbeat(self):
interval = 2
cluster = TestCluster(idle_heartbeat_interval=interval,
Expand Down Expand Up @@ -831,6 +835,7 @@ def test_idle_heartbeat_disabled(self):

cluster.shutdown()

@pytest.mark.xfail(reason="test not stable on cassandra", condition=EVENT_LOOP_MANAGER=="asyncio" and SCYLLA_VERSION is None, strict=False)
def test_pool_management(self):
# Ensure that in_flight and request_ids quiesce after cluster operations
cluster = TestCluster(idle_heartbeat_interval=0) # no idle heartbeat here, pool management is tested in test_idle_heartbeat
Expand Down Expand Up @@ -1439,7 +1444,7 @@ def test_session_no_cluster(self):


class HostStateTest(unittest.TestCase):

@pytest.mark.xfail(reason="test not stable on cassandra", condition=EVENT_LOOP_MANAGER=="asyncio" and SCYLLA_VERSION is None, strict=False)
def test_down_event_with_active_connection(self):
"""
Test to ensure that on down calls to clusters with connections still active don't result in
Expand Down
4 changes: 3 additions & 1 deletion tests/integration/standard/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# limitations under the License.

import unittest
import pytest

from functools import partial
from mock import patch
Expand All @@ -38,7 +39,7 @@

from tests import is_monkey_patched
from tests.integration import use_singledc, get_node, CASSANDRA_IP, local, \
requiresmallclockgranularity, greaterthancass20, TestCluster
requiresmallclockgranularity, greaterthancass20, TestCluster, EVENT_LOOP_MANAGER, SCYLLA_VERSION

try:
from cassandra.io.libevreactor import LibevConnection
Expand Down Expand Up @@ -127,6 +128,7 @@ def tearDown(self):

@local
@greaterthancass20
@pytest.mark.xfail(reason="test not stable on cassandra", condition=EVENT_LOOP_MANAGER=="asyncio" and SCYLLA_VERSION is None, strict=False)
def test_heart_beat_timeout(self):
# Setup a host listener to ensure the nodes don't go down
test_listener = TestHostListener()
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/standard/test_control_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from cassandra import InvalidRequest

import unittest

import pytest

from cassandra.protocol import ConfigurationException
from tests.integration import use_singledc, PROTOCOL_VERSION, TestCluster, greaterthanorequalcass40, notdse
Expand Down Expand Up @@ -101,7 +101,7 @@ def test_get_control_connection_host(self):
self.assertNotEqual(host, new_host)

# TODO: enable after https://github.com/scylladb/python-driver/issues/121 is fixed
@unittest.skip('Fails on scylla due to the broadcast_rpc_port is None')
@pytest.mark.skip('Fails on scylla due to the broadcast_rpc_port is None')
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the difference, why did you replace it ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as mentioned in the commit message, unittest.skip doesn't skip the setup/teardown code when using pytest as test runner, hence creating the cluster even for skipped tests.

for some of those test it was an issue, since the cassandra couldn't create the cluster.

@notdse
@greaterthanorequalcass40
def test_control_connection_port_discovery(self):
Expand Down
3 changes: 0 additions & 3 deletions tests/integration/standard/test_custom_protocol_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ def test_custom_raw_row_results_all_types(self):
self.assertEqual(len(CustomResultMessageTracked.checked_rev_row_set), len(PRIMITIVE_DATATYPES)-1)
cluster.shutdown()

@unittest.expectedFailure
@requirecassandra
@greaterthanorequalcass40
def test_protocol_divergence_v5_fail_by_continuous_paging(self):
Expand Down Expand Up @@ -168,7 +167,6 @@ def test_protocol_divergence_v4_fail_by_flag_uses_int(self):
self._protocol_divergence_fail_by_flag_uses_int(ProtocolVersion.V4, uses_int_query_flag=False,
int_flag=True)

@unittest.expectedFailure
@requirecassandra
@greaterthanorequalcass40
def test_protocol_v5_uses_flag_int(self):
Expand Down Expand Up @@ -196,7 +194,6 @@ def test_protocol_dsev1_uses_flag_int(self):
self._protocol_divergence_fail_by_flag_uses_int(ProtocolVersion.DSE_V1, uses_int_query_flag=True,
int_flag=True)

@unittest.expectedFailure
@requirecassandra
@greaterthanorequalcass40
def test_protocol_divergence_v5_fail_by_flag_uses_int(self):
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/standard/test_ip_change.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from cassandra.cluster import ExecutionProfile
from cassandra.policies import WhiteListRoundRobinPolicy

from tests.integration import use_cluster, get_node, get_cluster, local, TestCluster
from tests.integration import use_cluster, get_node, get_cluster, local, TestCluster, scylla_only
from tests.util import wait_until_not_raised

LOGGER = logging.getLogger(__name__)
Expand Down Expand Up @@ -35,7 +35,7 @@ def test_change_address_during_live_session(self):
LOGGER.debug("Change IP address for node3")
ip_prefix = get_cluster().get_ipprefix()
new_ip = f'{ip_prefix}33'
node3.set_configuration_options(values={'listen_address': new_ip, 'rpc_address': new_ip, 'api_address': new_ip})
node3.set_configuration_options(values={'listen_address': new_ip, 'rpc_address': new_ip})
node3.network_interfaces = {k: (new_ip, v[1]) for k, v in node3.network_interfaces.items()}
LOGGER.debug(f"Start node3 again with ip address {new_ip}")
node3.start(wait_for_binary_proto=True)
Expand Down
16 changes: 10 additions & 6 deletions tests/integration/standard/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@

from cassandra import AlreadyExists, SignatureDescriptor, UserFunctionDescriptor, UserAggregateDescriptor
from cassandra.connection import Connection

from cassandra.encoder import Encoder
from cassandra.metadata import (IndexMetadata, Token, murmur3, Function, Aggregate, protect_name, protect_names,
RegisteredTableExtension, _RegisteredExtensionType, get_schema_parser,
group_keys_by_replica, NO_VALID_REPLICA)
from cassandra.protocol import QueryMessage, ProtocolHandler
from cassandra.util import SortedSet
from ccmlib.scylla_cluster import ScyllaCluster

from tests.integration import (get_cluster, use_singledc, PROTOCOL_VERSION, execute_until_pass,
BasicSegregatedKeyspaceUnitTestCase, BasicSharedKeyspaceUnitTestCase,
Expand All @@ -42,7 +42,8 @@
greaterthancass21, assert_startswith, greaterthanorequalcass40,
greaterthanorequaldse67, lessthancass40,
TestCluster, DSE_VERSION, requires_java_udf, requires_composite_type,
requires_collection_indexes, SCYLLA_VERSION, xfail_scylla, xfail_scylla_version_lt)
requires_collection_indexes, SCYLLA_VERSION, xfail_scylla, xfail_scylla_version_lt,
scylla_only, EVENT_LOOP_MANAGER)

from tests.util import wait_until

Expand All @@ -55,7 +56,7 @@ def setup_module():

class HostMetaDataTests(BasicExistingKeyspaceUnitTestCase):
# TODO: enable after https://github.com/scylladb/python-driver/issues/121 is fixed
@unittest.skip('Fails on scylla due to the broadcast_rpc_port is None')
@pytest.mark.skip('Fails on scylla due to the broadcast_rpc_port is None')
@local
def test_host_addresses(self):
"""
Expand Down Expand Up @@ -214,6 +215,7 @@ def get_table_metadata(self):
self.cluster.refresh_table_metadata(self.keyspace_name, self.function_table_name)
return self.cluster.metadata.keyspaces[self.keyspace_name].tables[self.function_table_name]

@pytest.mark.xfail(reason="test not stable on cassandra", condition=EVENT_LOOP_MANAGER=="asyncio" and SCYLLA_VERSION is None, strict=False)
def test_basic_table_meta_properties(self):
create_statement = self.make_create_statement(["a"], [], ["b", "c"])
self.session.execute(create_statement)
Expand Down Expand Up @@ -572,6 +574,7 @@ def test_non_size_tiered_compaction(self):
self.assertNotIn("max_threshold", cql)

@requires_java_udf
@pytest.mark.xfail(reason="test not stable on cassandra", condition=EVENT_LOOP_MANAGER=="asyncio" and SCYLLA_VERSION is None, strict=False)
def test_refresh_schema_metadata(self):
"""
test for synchronously refreshing all cluster metadata
Expand Down Expand Up @@ -1061,6 +1064,7 @@ def test_metadata_pagination(self):
self.cluster.refresh_schema_metadata()
self.assertEqual(len(self.cluster.metadata.keyspaces[self.keyspace_name].tables), 12)

@pytest.mark.xfail(reason="test not stable on cassandra", condition=EVENT_LOOP_MANAGER=="asyncio" and SCYLLA_VERSION is None, strict=False)
def test_metadata_pagination_keyspaces(self):
"""
test for covering
Expand Down Expand Up @@ -1279,13 +1283,13 @@ def test_already_exists_exceptions(self):
cluster.shutdown()

@local
@pytest.mark.xfail(reason='AssertionError: \'RAC1\' != \'r1\' - probably a bug in driver or in Scylla')
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefere to create an issue and investigate what is going on here, why on scylla driver get's different rack name ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's ccm code

scylla default to GossipingPropertyFileSnitch and the logic there uses RAC1
cassandra default to PropertyFileSnitch and the logic default to r1

we can align it on ccm, if you insist

def test_replicas(self):
"""
Ensure cluster.metadata.get_replicas return correctly when not attached to keyspace
"""
if murmur3 is None:
raise unittest.SkipTest('the murmur3 extension is not available')
is_scylla = isinstance(get_cluster(), ScyllaCluster)

cluster = TestCluster()
self.assertEqual(cluster.metadata.get_replicas('test3rf', 'key'), [])
Expand All @@ -1295,7 +1299,7 @@ def test_replicas(self):
self.assertNotEqual(list(cluster.metadata.get_replicas('test3rf', b'key')), [])
host = list(cluster.metadata.get_replicas('test3rf', b'key'))[0]
self.assertEqual(host.datacenter, 'dc1')
self.assertEqual(host.rack, 'r1')
self.assertEqual(host.rack, 'RAC1' if is_scylla else 'r1')
cluster.shutdown()

def test_token_map(self):
Expand Down Expand Up @@ -1334,7 +1338,7 @@ def test_token(self):
self.assertEqual(expected_node_count, len(tmap.ring))
cluster.shutdown()


@scylla_only # this is scylla only, since the metadata timeout feature doesn't cover peers_v2 queries that is used by cassandra
class MetadataTimeoutTest(unittest.TestCase):
"""
Test of TokenMap creation and other behavior.
Expand Down
11 changes: 8 additions & 3 deletions tests/integration/standard/test_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
import unittest
import logging
import pytest
from packaging.version import Version

from cassandra import ProtocolVersion
from cassandra import ConsistencyLevel, Unavailable, InvalidRequest, cluster
from cassandra.query import (PreparedStatement, BoundStatement, SimpleStatement,
Expand All @@ -26,7 +28,7 @@
from cassandra.policies import HostDistance, RoundRobinPolicy, WhiteListRoundRobinPolicy
from tests.integration import use_singledc, PROTOCOL_VERSION, BasicSharedKeyspaceUnitTestCase, \
greaterthanprotocolv3, MockLoggingHandler, get_supported_protocol_versions, local, get_cluster, setup_keyspace, \
USE_CASS_EXTERNAL, greaterthanorequalcass40, DSE_VERSION, TestCluster, requirecassandra, xfail_scylla
USE_CASS_EXTERNAL, greaterthanorequalcass40, DSE_VERSION, TestCluster, requirecassandra, xfail_scylla, CASSANDRA_VERSION
from tests import notwindows
from tests.integration import greaterthanorequalcass30, get_node

Expand All @@ -47,7 +49,10 @@ def setup_module():
ccm_cluster.stop()
# This is necessary because test_too_many_statements may
# timeout otherwise
config_options = {'write_request_timeout_in_ms': '20000'}
if CASSANDRA_VERSION >= Version('4.1'):
config_options = {'write_request_timeout': '20000ms'}
else:
config_options = {'write_request_timeout_in_ms': '20000'}
ccm_cluster.set_configuration_options(config_options)
ccm_cluster.start(wait_for_binary_proto=True, wait_other_notice=True)

Expand Down Expand Up @@ -940,7 +945,7 @@ def test_no_connection_refused_on_timeout(self):
exception_type = type(result).__name__
if exception_type == "NoHostAvailable":
self.fail("PYTHON-91: Disconnected from Cassandra: %s" % result.message)
if exception_type in ["WriteTimeout", "WriteFailure", "ReadTimeout", "ReadFailure", "ErrorMessageSub"]:
if exception_type in ["WriteTimeout", "WriteFailure", "ReadTimeout", "ReadFailure", "ErrorMessageSub", "ErrorMessage"]:
if type(result).__name__ in ["WriteTimeout", "WriteFailure"]:
received_timeout = True
continue
Expand Down
6 changes: 5 additions & 1 deletion tests/integration/standard/test_rack_aware_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@
from cassandra.cluster import Cluster
from cassandra.policies import ConstantReconnectionPolicy, RackAwareRoundRobinPolicy

from tests.integration import PROTOCOL_VERSION, get_cluster, use_multidc
from tests.integration import PROTOCOL_VERSION, get_cluster, use_multidc, scylla_only

LOGGER = logging.getLogger(__name__)

def setup_module():
use_multidc({'DC1': {'RC1': 2, 'RC2': 2}, 'DC2': {'RC1': 3}})

# cassandra is failing in a weird way:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please create an issue of that and link it in a comment

# Token allocation failed: the number of racks 2 in datacenter DC1 is lower than its replication factor 3.
# for now just run it with scylla only
@scylla_only
class RackAwareRoundRobinPolicyTests(unittest.TestCase):
@classmethod
def setup_class(cls):
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/standard/test_rate_limit_exceeded.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
from cassandra.cluster import Cluster
from cassandra.policies import ConstantReconnectionPolicy, RoundRobinPolicy, TokenAwarePolicy

from tests.integration import PROTOCOL_VERSION, use_cluster
from tests.integration import PROTOCOL_VERSION, use_cluster, scylla_only

LOGGER = logging.getLogger(__name__)

def setup_module():
use_cluster('rate_limit', [3], start=True)

@scylla_only
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we have explanation why to run it only on scylla ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

RateLimitExceededException is a scylla only feature... it's error only scylla generate, and cassandra doesn't

class TestRateLimitExceededException(unittest.TestCase):
@classmethod
def setup_class(cls):
Expand Down
Loading
Loading