This repository was archived by the owner on Jun 22, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +16
-6
lines changed
Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,14 @@ name: Test Eel
22
33on :
44 push :
5- branches : [ main ]
5+ branches : [main]
66 pull_request :
7+ # The branches below must be a subset of the branches above
8+ branches : [main]
9+ workflow_dispatch :
710
811jobs :
912 test :
10- runs-on : ${{ matrix.os }}
11-
1213 strategy :
1314 fail-fast : false
1415 matrix :
1819 - os : macos-latest
1920 python-version : 3.7
2021
22+ runs-on : ${{ matrix.os }}
23+
2124 steps :
2225 - name : Checkout repository
2326 uses : actions/checkout@v2
@@ -31,15 +34,19 @@ jobs:
3134 run : tox -- --durations=0 --timeout=30
3235
3336 typecheck :
34- runs-on : windows-latest
37+ strategy :
38+ matrix :
39+ os : [windows-latest]
40+
41+ runs-on : ${{ matrix.os }}
3542
3643 steps :
3744 - name : Checkout repository
3845 uses : actions/checkout@v2
3946 - name : Setup python
4047 uses : actions/setup-python@v2
4148 with :
42- python-version : " 3.10 "
49+ python-version : " 3.x "
4350 - name : Setup test execution environment.
4451 run : pip3 install -r requirements-meta.txt
4552 - name : Run tox tests
Original file line number Diff line number Diff line change 22python_version = 3.10
33warn_unused_configs = True
44
5+ [mypy-bottle_websocket]
6+ ignore_missing_imports = True
7+
58[mypy-jinja2]
69ignore_missing_imports = True
710
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ pytest>=7.0.0,<8.0.0
55pytest-timeout>=2.0.0,<3.0.0
66selenium>=4.0.0,<5.0.0
77webdriver_manager>=4.0.0,<5.0.0
8- mypy==0.971
8+ mypy>=1.0.0,<2.0.0
99pyinstaller
1010types-setuptools
You can’t perform that action at this time.
0 commit comments