tox: Add pytest-sugar.
Nicer test output FTW!
This commit is contained in:
parent
c2ea2aa6d7
commit
94d88e280b
@ -56,7 +56,9 @@ elif travis_os == 'osx' and testenv == 'py34':
|
|||||||
if testenv == 'eslint':
|
if testenv == 'eslint':
|
||||||
subprocess.check_call(['eslint', 'qutebrowser'])
|
subprocess.check_call(['eslint', 'qutebrowser'])
|
||||||
elif testenv == 'py34' and travis_os == 'linux':
|
elif testenv == 'py34' and travis_os == 'linux':
|
||||||
subprocess.check_call(['xvfb-run', '-s', '-screen 0 640x480x16',
|
cmdline = ['xvfb-run', '-s', '-screen 0 640x480x16']
|
||||||
'tox', '-e', testenv])
|
|
||||||
else:
|
else:
|
||||||
subprocess.check_call(['tox', '-e', testenv])
|
cmdline = []
|
||||||
|
|
||||||
|
cmdline += ['tox', '-e', testenv, '--', '-p', 'no:sugar', 'tests']
|
||||||
|
subprocess.check_call(cmdline)
|
||||||
|
Loading…
Reference in New Issue
Block a user