mirror of https://github.com/MISP/PyMISP
chg: Disable fastmode, reenable fetching files
parent
8172fdf49d
commit
799ed8cfc5
|
@ -49,15 +49,15 @@ except ImportError as e:
|
||||||
|
|
||||||
urllib3.disable_warnings()
|
urllib3.disable_warnings()
|
||||||
|
|
||||||
fast_mode = True
|
fast_mode = False
|
||||||
|
|
||||||
test_file_path = Path('tests/viper-test-files')
|
test_file_path = Path('tests/viper-test-files')
|
||||||
|
|
||||||
print(test_file_path, 'exists: ', test_file_path.exists())
|
print(test_file_path, 'exists: ', test_file_path.exists())
|
||||||
|
|
||||||
#if not test_file_path.exists():
|
if not test_file_path.exists():
|
||||||
# print('The test files are missing, pulling it.')
|
print('The test files are missing, pulling it.')
|
||||||
# os.system('git clone https://github.com/viper-framework/viper-test-files.git tests/viper-test-files')
|
os.system('git clone https://github.com/viper-framework/viper-test-files.git tests/viper-test-files')
|
||||||
|
|
||||||
|
|
||||||
class TestComprehensive(unittest.TestCase):
|
class TestComprehensive(unittest.TestCase):
|
||||||
|
|
Loading…
Reference in New Issue