summary refs log tree commit diff
path: root/.github/workflows/tests.yml
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-03-10 16:06:53 +0000
committerDavid Robertson <davidr@element.io>2022-03-14 18:42:00 +0000
commit964c9372576762b0eb56fb1bb7f52fc00e414225 (patch)
treebbd8039d6e6d053f1135ad69725a95615024e9c0 /.github/workflows/tests.yml
parentTry to fix olddeps (diff)
downloadsynapse-964c9372576762b0eb56fb1bb7f52fc00e414225.tar.xz
WIP
Diffstat (limited to '')
-rw-r--r--.github/workflows/tests.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 8cec99ddf2..574f5ad399 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -123,10 +123,10 @@ jobs:
       - uses: actions/checkout@v2
       - name: Test with old deps
         uses: docker://ubuntu:focal # For old python and sqlite
+        # Note: focal seems to be using 3.8, but the oldest is 3.7?
         with:
           workdir: /github/workspace
           entrypoint: .ci/scripts/test_old_deps.sh
-      - run: trial --jobs=2 tests
       - name: Dump logs
         # Logs are most useful when the command fails, always include them.
         if: ${{ always() }}
@@ -149,7 +149,7 @@ jobs:
     strategy:
       matrix:
         python-version: ["pypy-3.7"]
-        extras: [""]
+        extras: ["all"]
 
     steps:
       - uses: actions/checkout@v2