Skip to content

Commit

Permalink
Managing pytest’s output
Browse files Browse the repository at this point in the history
https://docs.pytest.org/en/7.1.x/how-to/output.html

Signed-off-by: Alexander Indenbaum <aindenba@redhat.com>
  • Loading branch information
Alexander Indenbaum committed Aug 3, 2023
1 parent 2dc5a1d commit d087423
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
submodules: recursive

- name: Build container images
run: make build
run: |
make build
- name: Save container images
run: |
Expand Down Expand Up @@ -90,7 +91,7 @@ jobs:
- name: Run ${{ matrix.test }} test
run: |
# Run tests code in current dir
make run SVC="nvmeof-devel" OPTS="--volume=$(pwd)/tests:/src/tests --entrypoint=python3" CMD="-m pytest -s tests/test_${{ matrix.test }}.py"
make run SVC="nvmeof-devel" OPTS="--volume=$(pwd)/tests:/src/tests --entrypoint=python3" CMD="-m pytest --full-trace -vv -ra -s tests/test_${{ matrix.test }}.py"
- name: Display Logs
run: |
Expand Down

0 comments on commit d087423

Please sign in to comment.