File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,13 @@ jobs:
1313 uses : actions/checkout@v4
1414
1515 - name : Set up Python
16- uses : actions/setup-python@v4
17- with :
18- python-version : ' 3.9'
16+ uses : actions/setup-python@v5
1917
20- - name : Install Mypy Dependencies
21- run : pip install mypy
18+ - name : Install Test Dependencies
19+ run : pip install .[test]
2220
2321 - name : Type Checking with Mypy
24- run : mypy --strict --install-types --non-interactive learnosity_sdk
22+ run : mypy learnosity_sdk
2523
2624 tests :
2725 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1+ [tool .mypy ]
2+ strict = true
Original file line number Diff line number Diff line change 1919]
2020
2121TEST_REQUIRES = [
22+ 'mypy' ,
2223 'pytest >=4.6.6' ,
2324 'pytest-cov >=2.8.1' ,
2425 'pytest-subtests' ,
2526 'responses >=0.8.1' ,
27+ 'types-requests'
2628]
2729
2830# Extract the markdown content of the README to be sent to Pypi as the project description page.
You can’t perform that action at this time.
0 commit comments