diff options
author | Dan Callahan <danc@element.io> | 2022-04-07 13:10:49 +0100 |
---|---|---|
committer | Dan Callahan <danc@element.io> | 2022-04-07 13:10:49 +0100 |
commit | 9225764bc8fae4dd1e5dc8483975ec1d14e7d2a7 (patch) | |
tree | 606603b6f89e0745d1c521a278087106369d6f0b /.github/workflows/twisted_trunk.yml | |
parent | Clarify a CI workflow step for Twisted trunk (diff) | |
download | synapse-9225764bc8fae4dd1e5dc8483975ec1d14e7d2a7.tar.xz |
Inline CI steps for installing Twisted trunk
Signed-off-by: Dan Callahan <danc@element.io>
Diffstat (limited to '.github/workflows/twisted_trunk.yml')
-rw-r--r-- | .github/workflows/twisted_trunk.yml | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/twisted_trunk.yml b/.github/workflows/twisted_trunk.yml index de44428b1c..03aaab241f 100644 --- a/.github/workflows/twisted_trunk.yml +++ b/.github/workflows/twisted_trunk.yml @@ -20,7 +20,10 @@ jobs: with: python-version: "3.x" extras: "all" - - run: .ci/patch_for_twisted_trunk.sh + - run: | + poetry remove twisted + poetry add --extras tls git+https://github.com/twisted/twisted.git#trunk + poetry install --no-interaction --extras "all test" - run: poetry run mypy trial: @@ -33,7 +36,10 @@ jobs: with: python-version: "3.x" extras: "all test" - - run: .ci/patch_for_twisted_trunk.sh + - run: | + poetry remove twisted + poetry add --extras tls git+https://github.com/twisted/twisted.git#trunk + poetry install --no-interaction --extras "all test" - run: poetry run trial --jobs 2 tests - name: Dump logs @@ -65,7 +71,9 @@ jobs: # Tidying up is important because `/src` is a mounted volume. run: | ln -s -T /venv /src/.venv - .ci/patch_for_twisted_trunk.sh + poetry remove twisted + poetry add --extras tls git+https://github.com/twisted/twisted.git#trunk + poetry install --no-interaction --extras "all test" rm /src/.venv working-directory: /src - name: Run SyTest |