Skip to content

Commit 79fb423

Browse files
committed
workflows: Run unitests in verbose mode
1 parent 9d47b00 commit 79fb423

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ubuntu_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
python3 setup.py build --build-lib build-lib
2424
- name: Run unit tests
2525
run: |
26-
PYTHONPATH=./build-lib python3 -m unittest
26+
PYTHONPATH=./build-lib python3 -m unittest --verbose
2727
limited:
2828
name: Run build and unit tests. (limited API)
2929
runs-on: ubuntu-20.04
@@ -42,7 +42,7 @@ jobs:
4242
python3 setup.py build --build-lib build-lib
4343
- name: Run unit tests
4444
run: |
45-
PYTHONPATH=./build-lib python3 -m unittest
45+
PYTHONPATH=./build-lib python3 -m unittest --verbose
4646
lint:
4747
name: Run linters on the code
4848
runs-on: ubuntu-latest

test/containers/Containerfile-alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ RUN apk update && \
1818
WORKDIR /root/python-sdbus/
1919

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

0 commit comments

Comments
 (0)