diff options
Diffstat (limited to 'run_project_tests.py')
| -rwxr-xr-x | run_project_tests.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index e75b98fbc..ab567d327 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -1574,8 +1574,11 @@ def clear_transitive_files() -> None: pass def setup_symlinks() -> None: - symlink_file1.symlink_to('file1') - symlink_file2.symlink_to('file1') + try: + symlink_file1.symlink_to('file1') + symlink_file2.symlink_to('file1') + except OSError: + print('symlinks are not supported on this system') if __name__ == '__main__': if under_ci and not raw_ci_jobname: |
