File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ jobs:
2727 python-version : ' 3.x'
2828 - name : Install Dependencies
2929 run : |
30- python -m pip install pytest pytest-cov
31- python -m pip install .
30+ python -m pip install poetry
31+ poetry install --all-extras
3232 - name : Run Tests
3333 env :
3434 SIMVUE_URL : ${{ secrets.SIMVUE_URL }}
3535 SIMVUE_TOKEN : ${{ secrets.SIMVUE_TOKEN }}
3636 run : |
37- python -m pytest -x --cov=simvue_cli --cov-report=term --cov-report=xml -c /dev/null -p no:warnings -v
37+ poetry run pytest -x --cov=simvue_cli --cov-report=term --cov-report=xml -c /dev/null -p no:warnings -v
Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ jobs:
2727 python-version : ' 3.x'
2828 - name : Install Dependencies
2929 run : |
30- python -m pip install pytest pytest-cov
31- python -m pip install .
30+ python -m pip install poetry
31+ poetry install --all-extras
3232 - name : Run Tests
3333 env :
3434 SIMVUE_URL : ${{ secrets.SIMVUE_URL }}
3535 SIMVUE_TOKEN : ${{ secrets.SIMVUE_TOKEN }}
3636 run : |
37- python -m pytest -x --cov=simvue_cli --cov-report=term --cov-report=xml -c /dev/null -p no:warnings -v
37+ poetry run pytest -x --cov=simvue_cli --cov-report=term --cov-report=xml -c /dev/null -p no:warnings -v
Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ jobs:
2727 python-version : ' 3.x'
2828 - name : Install Dependencies
2929 run : |
30- python -m pip install pytest pytest-cov
31- python -m pip install .
30+ python -m pip install poetry
31+ poetry install --all-extras
3232 - name : Run Tests
3333 env :
3434 SIMVUE_URL : ${{ secrets.SIMVUE_URL }}
3535 SIMVUE_TOKEN : ${{ secrets.SIMVUE_TOKEN }}
3636 run : |
37- python -m pytest -x --cov=simvue_cli --cov-report=term --cov-report=xml -c /dev/null -p no:warnings -v -m "not unix"
37+ poetry run pytest -x --cov=simvue_cli --cov-report=term --cov-report=xml -c /dev/null -p no:warnings -v
You can’t perform that action at this time.
0 commit comments