[5d12a0]: / tests / common.py

Download this file

15 lines (13 with data), 270 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
import sys
import os
import argparse
import unittest
import warnings
import contextlib
from functools import wraps
from itertools import product
from copy import deepcopy
def run_tests():
import faulthandler
faulthandler.enable()
unittest.main(verbosity=2)