Update Travis CI to run GUI tests

This commit is contained in:
Micah Lee 2018-09-27 21:19:42 -07:00
parent 8261b4868d
commit 6f57f7eae6
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
3 changed files with 10 additions and 6 deletions

View file

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