File tree 2 files changed +16
-6
lines changed 2 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,20 @@ jobs:
29
29
with :
30
30
default : 2.7.14
31
31
versions : ${{ matrix.python-version }}
32
- - name : Test with pytest
32
+ - name : Test with scylla
33
33
run : |
34
34
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
35
35
export SCYLLA_VERSION='release:5.1'
36
36
./ci/run_integration_test.sh tests/integration/standard/ tests/integration/cqlengine/
37
37
38
- - name : Test tablets
38
+ - name : Test with scylla - tablets
39
39
run : |
40
40
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
41
41
export SCYLLA_VERSION='unstable/master:2024-01-17T17:56:00Z'
42
42
./ci/run_integration_test.sh tests/integration/experiments/
43
+
44
+ - name : Test with cassandra
45
+ run : |
46
+ export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
47
+ export CASSANDRA_VERSION='4.1.5'
48
+ ./ci/run_integration_test.sh tests/integration/standard/
Original file line number Diff line number Diff line change @@ -30,10 +30,14 @@ pip install awscli
30
30
pip install https://github.com/scylladb/scylla-ccm/archive/master.zip
31
31
32
32
# download version
33
-
34
- ccm create scylla-driver-temp -n 1 --scylla --version ${SCYLLA_VERSION}
35
- ccm remove
36
-
33
+ if [[ -n " ${SCYLLA_VERSION} " ]]; then
34
+ ccm create scylla-driver-temp -n 1 --scylla --version ${SCYLLA_VERSION}
35
+ ccm remove
36
+ fi
37
+ if [[ -n " ${CASSANDRA_VERSION} " ]]; then
38
+ ccm create cassandra-driver-temp -n 1 --version ${CASSANDRA_VERSION}
39
+ ccm remove
40
+ fi
37
41
# run test
38
42
39
43
export MAPPED_SCYLLA_VERSION=3.11.4
You can’t perform that action at this time.
0 commit comments