tests: Disable xvfb in test_check_coverage

Looks like it raises a ByteWarning for some reason...
This commit is contained in:
Florian Bruhin 2020-07-29 11:28:39 +02:00
parent 13267033d0
commit 0a3d81ba25
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class CovtestHelper:
res = self._testdir.runpytest('--cov=module',
'--cov-config={}'.format(coveragerc),
'--cov-report=xml',
plugins=['no:faulthandler'])
plugins=['no:faulthandler', 'no:xvfb'])
assert res.ret == 0
return res