File tree 1 file changed +12
-5
lines changed
1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,15 @@ build:
32
32
- pip3 install --user pytest
33
33
- rm -r objectbox
34
34
- pip3 install --user --force-reinstall dist/*.whl
35
- - python3 -m pytest
35
+ - ${PYTHON} -m pytest
36
36
37
- .test:linux:x64 :
37
+ .test-python3 :
38
38
extends : .test
39
+ variables :
40
+ PYTHON : " python3"
41
+
42
+ .test:linux:x64 :
43
+ extends : .test-python3
39
44
tags : [x64, docker, linux]
40
45
41
46
test:linux:x64:3.7 :
@@ -55,7 +60,7 @@ test:linux:x64:3.10:
55
60
image : python:3.10
56
61
57
62
test:linux:armv7hf :
58
- extends : .test
63
+ extends : .test-python3
59
64
tags : [armv7hf, shell, linux, python3]
60
65
61
66
# aarch64 version not published
@@ -64,9 +69,11 @@ test:linux:armv7hf:
64
69
# tags: [aarch64, shell, linux, python3]
65
70
66
71
test:mac:x64 :
67
- extends : .test
72
+ extends : .test-python3
68
73
tags : [mac, x64, shell, python3]
69
74
70
75
test:windows:x64 :
71
76
extends : .test
72
- tags : [windows, x64, shell, python3]
77
+ tags : [windows, x64, shell, python3]
78
+ variables :
79
+ PYTHON : " python.exe"
You can’t perform that action at this time.
0 commit comments