File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Integration tests Python2
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ tests :
10
+ runs-on : ubuntu-20.04
11
+ if : " !contains(github.event.pull_request.labels.*.name, 'disable-integration-tests')"
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - name : Install Python2.7
15
+ uses : actions/setup-python@v4
16
+ with :
17
+ python-version : 2.7
18
+
19
+ - name : Test with pytest
20
+ run : |
21
+ ./ci/run_integration_test.sh tests/integration/standard/test_authentication.py tests/integration/standard/test_cluster.py tests/integration/standard/test_concurrent.py tests/integration/standard/test_connection.py tests/integration/standard/test_control_connection.py tests/integration/standard/test_custom_payload.py tests/integration/standard/test_custom_protocol_handler.py tests/integration/standard/test_cython_protocol_handlers.py tests/integration/standard/test_scylla_cloud.py
22
+ # can't run this, cause only 2 cpus on github actions: tests/integration/standard/test_shard_aware.py
You can’t perform that action at this time.
0 commit comments