diff options
author | David Robertson <davidr@element.io> | 2022-03-11 14:41:15 +0000 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-03-14 18:42:01 +0000 |
commit | 8664ceb24a9af446e910a3e5e9bf3c00e5f1cb68 (patch) | |
tree | 77392dacfde833a80893b1ca37056d61b7bb546d | |
parent | skippppp (diff) | |
download | synapse-8664ceb24a9af446e910a3e5e9bf3c00e5f1cb68.tar.xz |
path
-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 |