File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 30
30
run : |
31
31
set -exuo pipefail
32
32
pip install --upgrade pip setuptools
33
- pip install -r test-requirements.txt
34
- pip install tox codecov
35
- pip install -e .
36
- # pull manylinux images that will be used, this helps passing tests which would otherwise timeout.
37
- python -c $'from tests.integration.test_manylinux import MANYLINUX_IMAGES\nfor image in MANYLINUX_IMAGES.values():\n print(image)' | xargs -L 1 docker pull
33
+ ./tests/install.sh
38
34
39
35
- name : Run tests
40
36
run : ./tests/travis.sh
Original file line number Diff line number Diff line change @@ -23,11 +23,7 @@ before_install:
23
23
- pip install --upgrade pip setuptools
24
24
25
25
install :
26
- - pip install -r test-requirements.txt
27
- - pip install tox codecov
28
- - pip install -e .
29
- # pull manylinux images that will be used, this helps passing tests which would otherwise timeout.
30
- - python -c $'from tests.integration.test_manylinux import MANYLINUX_IMAGES\nfor image in MANYLINUX_IMAGES.values():\n print(image)' | xargs -L 1 docker pull
26
+ - ./tests/install.sh
31
27
32
28
script :
33
29
- tests/travis.sh
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -exuo pipefail
4
+
5
+ pip install -r test-requirements.txt
6
+ pip install tox codecov
7
+ pip install -e .
8
+ # pull manylinux images that will be used, this helps passing tests which would otherwise timeout.
9
+ python -c $' from tests.integration.test_manylinux import MANYLINUX_IMAGES\n for image in MANYLINUX_IMAGES.values():\n print(image)' | xargs -L 1 docker pull
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- set -exo pipefail
3
+ set -exuo pipefail
4
4
5
5
pytest -s --cov auditwheel --cov-branch
6
6
auditwheel lddtree $( python -c ' import sys; print(sys.executable)' )
You can’t perform that action at this time.
0 commit comments