Skip to content

Commit 150ff6d

Browse files
committed
Fix virtualenv downstream test
1 parent 7ceab7d commit 150ff6d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

mx.graalpython/downstream_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ def downstream_test_virtualenv(graalpy, testdir):
134134
env['CI_RUN'] = '1'
135135
# Need to avoid pulling in graalpy seeder
136136
env['PIP_GRAALPY_DISABLE_PATCHING'] = '1'
137-
run_in_venv(venv, ['pip', 'install', f'{src}[test]'], env=env)
137+
# Update to pip that supports --group
138+
run_in_venv(venv, ['pip', 'install', 'pip>=26'], env=env)
139+
run_in_venv(venv, ['pip', 'install', '--group=test', '.'], env=env, cwd=src)
138140
# Allow newer CPython for building zipapp, we don't have 3.11 in the CI anymore
139141
replace_in_file(
140142
src / 'tests/integration/test_zipapp.py',

0 commit comments

Comments
 (0)