1import cffi.verifier
2from .test_verify import *
3
4
5def setup_module():
6    cffi.verifier.cleanup_tmpdir()
7    cffi.verifier._FORCE_GENERIC_ENGINE = True
8    # Runs all tests with _FORCE_GENERIC_ENGINE = True, to make sure we
9    # also test vengine_gen.py.
10
11def teardown_module():
12    cffi.verifier._FORCE_GENERIC_ENGINE = False
13