We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 650862f commit 68cf102Copy full SHA for 68cf102
.github/workflows/ci.yml
@@ -26,7 +26,7 @@ jobs:
26
- run: make test
27
- run: make lint
28
29
- build_and_test_old_trio:
+ build_and_test_old_deps:
30
runs-on: ${{ matrix.os }}
31
strategy:
32
matrix:
@@ -41,7 +41,10 @@ jobs:
41
python-version: ${{ matrix.python-version }}
42
cache: 'pip'
43
cache-dependency-path: 'requirements-dev.txt'
44
- - run: pip install . -r requirements-dev.txt && pip install trio==0.15.0 pytest-trio==0.7.0
+ - run: |
45
+ pip install . -r requirements-dev.txt
46
+ pip install trio==0.15.0 pytest-trio==0.7.0 # trio with MultiError
47
+ pip install wsproto==0.14.0 # wsproto allowing message during REMOTE_CLOSING, etc.
48
49
50
build_and_test_pypy:
0 commit comments