Skip to content

Commit 68cf102

Browse files
committed
CI coverage for older wsproto
1 parent 650862f commit 68cf102

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- run: make test
2727
- run: make lint
2828

29-
build_and_test_old_trio:
29+
build_and_test_old_deps:
3030
runs-on: ${{ matrix.os }}
3131
strategy:
3232
matrix:
@@ -41,7 +41,10 @@ jobs:
4141
python-version: ${{ matrix.python-version }}
4242
cache: 'pip'
4343
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
44+
- 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.
4548
- run: make test
4649

4750
build_and_test_pypy:

0 commit comments

Comments
 (0)