Skip to content

Commit

Permalink
workflows: Run unitests in verbose mode
Browse files Browse the repository at this point in the history
  • Loading branch information
igo95862 committed Jun 4, 2022
1 parent 9d47b00 commit 79fb423
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python3 setup.py build --build-lib build-lib
- name: Run unit tests
run: |
PYTHONPATH=./build-lib python3 -m unittest
PYTHONPATH=./build-lib python3 -m unittest --verbose
limited:
name: Run build and unit tests. (limited API)
runs-on: ubuntu-20.04
Expand All @@ -42,7 +42,7 @@ jobs:
python3 setup.py build --build-lib build-lib
- name: Run unit tests
run: |
PYTHONPATH=./build-lib python3 -m unittest
PYTHONPATH=./build-lib python3 -m unittest --verbose
lint:
name: Run linters on the code
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion test/containers/Containerfile-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ RUN apk update && \
WORKDIR /root/python-sdbus/

CMD python3 setup.py build --build-lib build-lib && \
PYTHONPATH=./build-lib python3 -m unittest
PYTHONPATH=./build-lib python3 -m unittest --verbose

0 comments on commit 79fb423

Please sign in to comment.