File size: 306 Bytes
463f868
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from engine.tests.test_logging import test_logging_ability_resolution

try:
    print("Running test...")
    test_logging_ability_resolution()
    print("Test Passed!")
except AssertionError as e:
    print(f"Test Failed: {e}")
except Exception:
    import traceback

    traceback.print_exc()