Skip to content

Commit

Permalink
Fix tests for ARM and x86 overwriting each others files.
Browse files Browse the repository at this point in the history
  • Loading branch information
horstle committed Apr 29, 2024
1 parent 86118d3 commit d02abc6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ jobs:
continue-on-error: true
- name: Start proxy server
run: python -m proxy --threaded --hostname 127.0.0.1 --log-level DEBUG &
- name: Run unit tests
run: coverage run -m unittest discover
- name: Run unit tests without ARM
run: coverage run -m unittest discover --omit=tests/test_ishelper_linux_arm.py
- name: Run unit tests for ARM
run: coverage run -m unittest test/test_ishelper_linux_arm.py
- name: Run addon using cli
run: coverage run -a default.py
- name: Upload code coverage to CodeCov
Expand Down

0 comments on commit d02abc6

Please sign in to comment.