diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2023-07-07 16:57:20 -0400 |
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2023-07-07 16:57:20 -0400 |
| commit | c4b5d089dad5680a0dd12b2d386b692318eb5c58 (patch) | |
| tree | 433aaed515411c9ce071de87c969e64aebf292f5 /indra/llcommon/tests/test_python_script.py | |
| parent | e933ace53b24b732d4111169e3c5964a8591a29e (diff) | |
SL-18837: Partially revert e933ace, keeping useful tweaks.
Introducing indirection via test_python_script.py did NOT address the "Access
is denied" errors on GitHub Windows runners.
Diffstat (limited to 'indra/llcommon/tests/test_python_script.py')
| -rw-r--r-- | indra/llcommon/tests/test_python_script.py | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/indra/llcommon/tests/test_python_script.py b/indra/llcommon/tests/test_python_script.py deleted file mode 100644 index c0c8661aa9..0000000000 --- a/indra/llcommon/tests/test_python_script.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env python3 -"""\ -@file test_python_script.py -@author Nat Goodspeed -@date 2023-07-07 -@brief Work around a problem running Python within integration tests on GitHub - Windows runners. - -$LicenseInfo:firstyear=2023&license=viewerlgpl$ -Copyright (c) 2023, Linden Research, Inc. -$/LicenseInfo$ -""" - -import os -import sys - -# use pop() so that if the referenced script in turn looks at sys.argv, it -# will see its arguments rather than its own filename -_script = sys.argv.pop(1) -exec(open(_script).read()) |
