diff --git a/tests/testlive_comprehensive.py b/tests/testlive_comprehensive.py index 5c1a8d8..c1609df 100644 --- a/tests/testlive_comprehensive.py +++ b/tests/testlive_comprehensive.py @@ -51,7 +51,11 @@ urllib3.disable_warnings() fast_mode = False -if not Path('tests/viper-test-files').exists(): +test_file_path = Path('tests/viper-test-files') + +print(test_file_path, 'exists: ', test_file_path.exists()) + +if not test_file_path.exists(): 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')