3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00

Don't fail tests when xmlschema is missing

This commit is contained in:
Jannis Harder 2022-06-03 17:16:01 +02:00
parent d398a3c2df
commit 80eacf34ca

View file

@ -1,4 +1,13 @@
from xmlschema import XMLSchema, XMLSchemaValidationError
try:
from xmlschema import XMLSchema, XMLSchemaValidationError
except ImportError:
import os
if "NOSKIP" not in os.environ.get("MAKEFLAGS", ""):
print()
print("SKIPPING python library xmlschema not found, skipping JUnit output validation")
print()
exit(0)
import argparse
def main():