tests: Return skip error if import fails
Rather than backtracing, just print the exception and return a skip error if the import fails.
This commit is contained in:
parent
5faf8498d9
commit
5ac770c614
1 changed files with 18 additions and 14 deletions
|
@ -1,6 +1,7 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import sys
|
||||||
|
try:
|
||||||
import gi
|
import gi
|
||||||
gi.require_version('FPrint', '2.0')
|
gi.require_version('FPrint', '2.0')
|
||||||
from gi.repository import FPrint, GLib, Gio
|
from gi.repository import FPrint, GLib, Gio
|
||||||
|
@ -15,6 +16,9 @@ import shutil
|
||||||
import glob
|
import glob
|
||||||
import cairo
|
import cairo
|
||||||
import tempfile
|
import tempfile
|
||||||
|
except Exception as e:
|
||||||
|
print("Missing dependencies: %s" % str(e))
|
||||||
|
sys.exit(77)
|
||||||
|
|
||||||
# Re-run the test with the passed wrapper if set
|
# Re-run the test with the passed wrapper if set
|
||||||
wrapper = os.getenv('LIBFPRINT_TEST_WRAPPER')
|
wrapper = os.getenv('LIBFPRINT_TEST_WRAPPER')
|
||||||
|
|
Loading…
Reference in a new issue