Skip to content

Commit b7e9408

Browse files
committed
install from wheels in ci to run tests over real installation
Signed-off-by: oleg.hoefling <[email protected]>
1 parent 6ed9d42 commit b7e9408

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/macosx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
rm -rf build/
3434
pip install coverage --upgrade -r requirements-test.txt
35-
pip install --editable .
35+
pip install xmlsec --only-binary=xmlsec --no-index --find-links=dist/
3636
- name: Run tests
3737
run: |
3838
coverage run -m pytest -v --color=yes

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ addons:
3636
install:
3737
- travis_retry pip install --upgrade pip setuptools wheel
3838
- travis_retry pip install coverage -r requirements-test.txt --upgrade --force-reinstall
39-
- travis_retry pip install -e "."
40-
- pip list
39+
- python setup.py bdist_wheel
40+
- pip install xmlsec --only-binary=xmlsec --no-index --find-links=dist/
4141
script: coverage run -m pytest -v tests --color=yes
4242
after_success:
4343
- lcov --capture --no-external --directory . --output-file coverage.info

0 commit comments

Comments
 (0)