XXX disable tap

This commit is contained in:
Bastien Nocera
2023-01-18 10:52:00 +01:00
parent e80d952335
commit e246ee4507
2 changed files with 2 additions and 6 deletions

View File

@@ -18,8 +18,6 @@ import fcntl
import os import os
import time import time
import taptestrunner
try: try:
# Do all non-standard imports here so we can skip the tests if any # Do all non-standard imports here so we can skip the tests if any
# needed packages are not available. # needed packages are not available.
@@ -111,4 +109,4 @@ except ImportError as e:
pass pass
if __name__ == '__main__': if __name__ == '__main__':
unittest.main(testRunner=taptestrunner.TAPTestRunner()) unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout, verbosity=2))

View File

@@ -18,8 +18,6 @@ import fcntl
import os import os
import time import time
import taptestrunner
try: try:
# Do all non-standard imports here so we can skip the tests if any # Do all non-standard imports here so we can skip the tests if any
# needed packages are not available. # needed packages are not available.
@@ -129,4 +127,4 @@ except ImportError as e:
pass pass
if __name__ == '__main__': if __name__ == '__main__':
unittest.main(testRunner=taptestrunner.TAPTestRunner()) unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout, verbosity=2))