Skip to content

Commit 5e5919a

Browse files
Lorak-mmkfruch
authored andcommitted
Add integration tests for Python2
1 parent 0d8ea0a commit 5e5919a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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

0 commit comments

Comments
 (0)