@@ -15,7 +15,7 @@ if (( aio_max_nr != aio_max_nr_recommended_value )); then
15
15
fi
16
16
fi
17
17
18
- BRANCH= ' branch- 5.0'
18
+ SCYLLA_RELEASE= ' release: 5.0'
19
19
20
20
python3 -m venv .test-venv
21
21
source .test-venv/bin/activate
@@ -32,27 +32,15 @@ pip install awscli
32
32
pip install https://github.com/scylladb/scylla-ccm/archive/master.zip
33
33
34
34
# download version
35
- LATEST_MASTER_JOB_ID=` aws --no-sign-request s3 ls downloads.scylladb.com/unstable/scylla/${BRANCH} /relocatable/ | tr -s ' ' | cut -d ' ' -f 3 | tr -d ' \/' | sort -g | tail -n 1`
36
- AWS_BASE=s3://downloads.scylladb.com/unstable/scylla/${BRANCH} /relocatable/${LATEST_MASTER_JOB_ID}
37
-
38
- aws s3 --no-sign-request cp ${AWS_BASE} /scylla-package.tar.gz . &
39
- aws s3 --no-sign-request cp ${AWS_BASE} /scylla-tools-package.tar.gz . &
40
- aws s3 --no-sign-request cp ${AWS_BASE} /scylla-jmx-package.tar.gz . &
41
- wait
42
-
43
- ccm create scylla-driver-temp -n 1 --scylla --version unstable/${BRANCH} :$LATEST_MASTER_JOB_ID \
44
- --scylla-core-package-uri=./scylla-package.tar.gz \
45
- --scylla-tools-java-package-uri=./scylla-tools-package.tar.gz \
46
- --scylla-jmx-package-uri=./scylla-jmx-package.tar.gz
47
35
36
+ ccm create scylla-driver-temp -n 1 --scylla --version ${SCYLLA_RELEASE}
48
37
ccm remove
49
38
50
39
# run test
51
40
52
- echo " export SCYLLA_VERSION=unstable/ ${BRANCH} : ${LATEST_MASTER_JOB_ID }"
41
+ echo " export SCYLLA_VERSION=${SCYLLA_RELEASE }"
53
42
echo " PROTOCOL_VERSION=4 EVENT_LOOP_MANAGER=asyncio pytest --import-mode append tests/integration/standard/"
54
- export SCYLLA_VERSION=unstable/ ${BRANCH} : ${LATEST_MASTER_JOB_ID }
43
+ export SCYLLA_VERSION=${SCYLLA_RELEASE }
55
44
export MAPPED_SCYLLA_VERSION=3.11.4
56
- PROTOCOL_VERSION=4 EVENT_LOOP_MANAGER=asyncio pytest -rf --import-mode append $*
57
-
45
+ PROTOCOL_VERSION=4 EVENT_LOOP_MANAGER=libev pytest -rf --import-mode append $*
58
46
0 commit comments