16 lines
429 B
Python
16 lines
429 B
Python
|
|
import os
|
||
|
|
os.environ['RUN_LIVE_TESTS'] = '1'
|
||
|
|
|
||
|
|
import sys
|
||
|
|
from pathlib import Path
|
||
|
|
sys.path.insert(0, str(Path(__file__).parent))
|
||
|
|
sys.path.insert(0, str(Path(__file__).parent.parent / 'external_factors'))
|
||
|
|
|
||
|
|
import unittest
|
||
|
|
from test_deribit_fix import TestLiveAPIRanges
|
||
|
|
|
||
|
|
loader = unittest.TestLoader()
|
||
|
|
suite = loader.loadTestsFromTestCase(TestLiveAPIRanges)
|
||
|
|
runner = unittest.TextTestRunner(verbosity=2)
|
||
|
|
result = runner.run(suite)
|