fighting with travis...

This commit is contained in:
Miguel Jacq 2018-09-22 17:06:02 +10:00
parent d9bb78417e
commit 3138ca77d8
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ python:
install:
- pip install -r install/requirements.txt
- pip install pytest-cov coveralls flake8 pytest-faulthandler pytest-ordering pytest-qt
- sudo apt-get install python3-pytest
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics

View File

@ -1,5 +1,5 @@
#!/bin/bash
for test in `ls -1 | egrep ^onionshare_`; do
xvfb-run pytest $test -vvv || exit 1
xvfb-run pytest-3 $test -vvv || exit 1
done