diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cbed9038..689796ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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