diff options
-rwxr-xr-x | .ci/scripts/test_old_deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/scripts/test_old_deps.sh b/.ci/scripts/test_old_deps.sh index 946eec14e2..32af371591 100755 --- a/.ci/scripts/test_old_deps.sh +++ b/.ci/scripts/test_old_deps.sh @@ -44,9 +44,9 @@ sed -i-backup \ # So instead, make a virtualenv and install in there. pipx install poetry -poetry install --extras all +~/.local/bin/poetry install --extras all # I've no idea why, but trial complains # twisted.python.reflect.ModuleNotFound: No module named 'tests' # Unless I invoke trial in this way. -poetry run trial -j 2 tests +~/.local/bin/poetry run trial -j 2 tests |