Skip to content

Commit b98888b

Browse files
committed
ci(tests): remove pytest -q to show real-time test progress
1 parent 98b65e7 commit b98888b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/daily.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
python -m pip install -e .[testing]
3636
3737
- name: Pytest (unit) • ${{ matrix.os }} • py${{ matrix.python-version }}
38-
run: python -m pytest tests/unit -q
38+
run: python -m pytest tests/unit

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python -m pip install -e .[testing]
3434
3535
- name: Pytest (unit) • ${{ matrix.os }}, ${{ matrix.python-version }}
36-
run: python -m pytest tests/unit -q
36+
run: python -m pytest tests/unit
3737

3838
regression-quick:
3939
name: Regression (quick)
@@ -62,7 +62,7 @@ jobs:
6262
python -m pip install -e .[testing]
6363
6464
- name: Pytest (regression quick)
65-
run: python -m pytest tests/regression -q
65+
run: python -m pytest tests/regression
6666

6767
- name: Upload artifacts (failure)
6868
if: failure()

.github/workflows/weekly-regression.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
pip install -e .[testing]
3737
3838
- name: Run regression test suite
39-
run: pytest tests/regression -q --run-slow
39+
run: pytest tests/regression --run-slow
4040

4141
- name: Upload regression artifacts on failure
4242
if: failure()

0 commit comments

Comments
 (0)