File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,25 @@ test: &test
10
10
- run :
11
11
name : test
12
12
command : |
13
- python setup.py test || pypy setup.py test
13
+ python setup.py test
14
14
- run :
15
15
name : upload coverage
16
16
command : |
17
17
pip install codecov
18
18
codecov --required
19
+ test_pypy : &test_pypy
20
+ working_directory : ~/bencoder.pyx
21
+ steps :
22
+ - checkout
23
+ - run :
24
+ name : install dependencies
25
+ command : |
26
+ pip install -U pip setuptools wheel
27
+ pip install -r dev-requirements.txt
28
+ - run :
29
+ name : test
30
+ command : |
31
+ pypy setup.py test
19
32
version : 2
20
33
jobs :
21
34
#
@@ -44,11 +57,11 @@ jobs:
44
57
pypy :
45
58
docker :
46
59
- image : pypy:2
47
- << : *test
60
+ << : *test_pypy
48
61
pypy3 :
49
62
docker :
50
63
- image : pypy:3
51
- << : *test
64
+ << : *test_pypy
52
65
53
66
workflows :
54
67
version : 2
You can’t perform that action at this time.
0 commit comments