We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edec5cc commit 7a6da61Copy full SHA for 7a6da61
src/ukify/test/test_ukify.py
@@ -36,6 +36,13 @@
36
sys.path.append(os.path.dirname(__file__) + '/..')
37
import ukify
38
39
+# Skip if we're running on an architecture that does not use UEFI.
40
+try:
41
+ ukify.guess_efi_arch()
42
+except ValueError as e:
43
+ print(str(e), file=sys.stderr)
44
+ sys.exit(77)
45
+
46
build_root = os.getenv('PROJECT_BUILD_ROOT')
47
try:
48
slow_tests = bool(int(os.getenv('SYSTEMD_SLOW_TESTS', '1')))
0 commit comments