Try and make travis-friendly tests

This commit is contained in:
Miguel Jacq 2018-09-22 16:54:52 +10:00
parent f09d539521
commit 12838f8e9d
No known key found for this signature in database
GPG key ID: EEA4341C6D97A0B6
2 changed files with 7 additions and 1 deletions

View file

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