Skip to content

Commit

Permalink
ci: disable parallel runs on Linux to show logs
Browse files Browse the repository at this point in the history
  • Loading branch information
P403n1x87 committed Sep 8, 2023
1 parent 429bb45 commit be15051
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,25 +131,25 @@ jobs:
- name: Run functional Austin tests (with sudo)
run: |
ulimit -c unlimited
sudo -E env PATH="$PATH" .venv/bin/pytest --pastebin=failed -svr a test/functional -n auto -k "not austinp"
sudo -E env PATH="$PATH" .venv/bin/pytest --pastebin=failed -svr a test/functional -k "not austinp"
if: always()

- name: Run functional Austin tests (without sudo)
run: |
ulimit -c unlimited
.venv/bin/pytest --pastebin=failed -svr a test/functional -n auto -k "not austinp"
.venv/bin/pytest --pastebin=failed -svr a test/functional -k "not austinp"
if: always()

- name: Run functional austinp tests (with sudo)
run: |
ulimit -c unlimited
sudo -E env PATH="$PATH" .venv/bin/pytest --pastebin=failed -svr a test/functional -n auto -k "austinp"
sudo -E env PATH="$PATH" .venv/bin/pytest --pastebin=failed -svr a test/functional -k "austinp"
if: always()

- name: Run functional austinp tests (without sudo)
run: |
ulimit -c unlimited
.venv/bin/pytest --pastebin=failed -svr a test/functional -n auto -k "austinp"
.venv/bin/pytest --pastebin=failed -svr a test/functional -k "austinp"
if: always()

- name: Run integrity tests (with sudo)
Expand Down

0 comments on commit be15051

Please sign in to comment.