Skip to content

Commit 3dd84aa

Browse files
committed
Update workflows
1 parent cbd646f commit 3dd84aa

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/test_cli_macos.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/test_cli_ubuntu.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/test_cli_windows.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)