diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2024-04-03 12:31:42 -0400 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2024-04-03 14:10:47 -0400 |
commit | 940a70fff474014b782e884882a85e290ff98494 (patch) | |
tree | b5c66442fcdd8f522aedff7c62ae712858dec176 /test/run.py | |
parent | b48325100babf57118f3996b5584594050e0cf13 (diff) |
tests: upgrade python packages
Type: test
Change-Id: I01500466f3d15c79e38028677ce7e5c75d427fdc
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test/run.py')
-rwxr-xr-x | test/run.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/run.py b/test/run.py index e7563175e09..66764b7ba97 100755 --- a/test/run.py +++ b/test/run.py @@ -111,9 +111,9 @@ class ExtendedEnvBuilder(venv.EnvBuilder): request being processed. """ os.environ["VIRTUAL_ENV"] = context.env_dir - os.environ[ - "CUSTOM_COMPILE_COMMAND" - ] = "make test-refresh-deps (or update requirements.txt)" + os.environ["CUSTOM_COMPILE_COMMAND"] = ( + "make test-refresh-deps (or update requirements.txt)" + ) # Set the venv python executable & binary install path env_exe = context.env_exe bin_path = context.bin_path |