We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aee74a commit d75f118Copy full SHA for d75f118
.github/workflows/ci.yml
@@ -27,6 +27,7 @@ jobs:
27
- run: pip install . -r requirements-dev-full.txt
28
- run: make test
29
- run: make lint
30
+ - run: make typecheck
31
32
build_and_test_old_deps:
33
runs-on: ${{ matrix.os }}
Makefile
@@ -12,6 +12,8 @@ test:
12
13
lint:
14
$(PYTHON) -m pylint trio_websocket/ tests/ autobahn/ examples/
15
+
16
+typecheck:
17
$(PYTHON) -m mypy --explicit-package-bases trio_websocket tests autobahn examples
18
19
publish:
0 commit comments