File tree 1 file changed +14
-3
lines changed
1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
+
2
3
python :
3
4
- " 2.7"
4
5
- " 3.4"
7
8
- " 3.7"
8
9
- " pypy"
9
10
- " pypy3"
11
+
12
+ env :
13
+ - SKIP=false
14
+
10
15
install : " pip install -r requirements/core.txt;pip install -r requirements/test.txt"
11
16
before_script : " pep8"
12
17
addons :
@@ -17,12 +22,14 @@ after_success:
17
22
18
23
# Integration tests need to run first to reset the PR build status to pending
19
24
stages :
20
- - ' Integration tests'
21
- - ' Test'
25
+ - name : ' Trigger Integration tests'
26
+ if : env(SKIP) = true
27
+ - name : ' Test'
28
+ if : env(SKIP) = false
22
29
23
30
jobs :
24
31
include :
25
- - stage : ' Integration tests'
32
+ - stage : ' Trigger Integration tests'
26
33
env : SDK=python
27
34
language : python
28
35
before_install : skip
33
40
script :
34
41
- " ci/trigger_fullstack-sdk-compat.sh"
35
42
after_success : skip
43
+
44
+ - stage : ' Test'
45
+ if : TRAVIS_PYTHON_VERSION =~ /^3.7/
46
+ dist : xenial
You can’t perform that action at this time.
0 commit comments