Skip to content

Commit

Permalink
updated run script for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlov721 committed Jul 9, 2024
1 parent 06508f2 commit 641019b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/modelconverter_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@ jobs:
credentials_json: ${{ secrets.GCP_CREDENTIALS }}
token_format: access_token

- name: Run Tests
- name: Run Tests (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
pytest -s --verbose "tests/test_packages/test_$PACKAGE.py"
- name: Run Tests (Windows)
if: ${{ matrix.os == 'windows-latest' }}
run: |
pytest -s --verbose "tests/test_packages/test_${{env.PACKAGE}}.py"

0 comments on commit 641019b

Please sign in to comment.