Skip to content

Commit

Permalink
ci: update emulated test workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Trecia Agoylo <[email protected]>
  • Loading branch information
tagoylo committed Sep 16, 2024
1 parent 059b9bc commit 6f78895
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,28 +49,27 @@ jobs:
bash ./.github/scripts/install_pydeps.sh
sudo apt install -y python3-tk
- name: Test
run: |
pytest -vs --cov=adi --scan-verbose --emu --junitxml="results.xml" -k 'not prod'
# - name: Test
# run: |
# pytest -vs --cov=adi --scan-verbose --emu --junitxml="results.xml" -k 'not prod'

- name: Report coverage
if: (github.event_name != 'pull_request') && (matrix.python-version == 3.6)
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: coveralls
run: coveralls

- name: Test without optional dependencies
run: |
pip uninstall -y paramiko
pytest -vs --scan-verbose --emu --junitxml="results.xml" -k 'not prod'
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: results.xml

- name: Test without optional dependencies
run: |
pip uninstall -y paramiko
pytest -vs --scan-verbose --emu --junitxml="results.xml" -k 'not prod'
Lint:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 6f78895

Please sign in to comment.