Thanks to visit codestin.com Credit goes to github.com
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 eaaceb7 commit 98a9dd9Copy full SHA for 98a9dd9
1 file changed
tests/run_tests.py
@@ -7,6 +7,7 @@
7
python3 run_tests.py
8
python3 run_tests.py -v # verbose mode
9
"""
10
+import faulthandler
11
import os.path
12
import shutil
13
import subprocess
@@ -119,6 +120,8 @@ def main():
119
120
global VERBOSE
121
VERBOSE = "-v" in sys.argv[1:]
122
123
+ faulthandler.enable()
124
+
125
src_dir = os.path.dirname(__file__)
126
if src_dir:
127
os.chdir(src_dir)
0 commit comments