File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,15 +15,13 @@ jobs:
1515 uses : actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
1616 with :
1717 python-version : ' 3.11'
18- - name : Upgrade python tooling
19- run : python -m pip install --upgrade pip setuptools wheel
18+ - name : Upgrade pip
19+ run : python -m pip install --upgrade pip
2020 - name : Install dependencies
2121 run : python -m pip install -r requirements.txt
22- - name : Install lint dependencies
23- run : python -m pip install --upgrade mypy
22+ - name : Install test dependencies
23+ run : python -m pip install -r requirements-test.txt
2424 - name : Lint
2525 run : python -m mypy -p linehaul
26- - name : Install test dependencies
27- run : python -m pip install pytest pretend hypothesis pyaml
2826 - name : Test
2927 run : python -m pytest test_functions.py tests/unit
Original file line number Diff line number Diff line change 1+ mypy
2+ pytest
3+ pretend
4+ hypothesis
5+ PyYAML
You can’t perform that action at this time.
0 commit comments