1
0

tests: introduce FAST_TESTS flag for faster local testing

This commit is contained in:
SomberNight
2018-05-28 14:02:07 +02:00
parent 1f373c1eb9
commit dbec3af810
2 changed files with 14 additions and 1 deletions

View File

@@ -4,6 +4,13 @@ import threading
from lib import constants
# Set this locally to make the test suite run faster.
# If set, unit tests that would normally test functions with multiple implementations,
# will only be run once, using the fastest implementation.
# e.g. libsecp256k1 vs python-ecdsa. pycryptodomex vs pyaes.
FAST_TESTS = False
# some unit tests are modifying globals; sorry.
class SequentialTestCase(unittest.TestCase):