Skip to content

Commit 0b2ded9

Browse files
committed
verbose tests
1 parent 2355715 commit 0b2ded9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
python-version: ["3.10", "3.11"]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v3
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies

.github/workflows/update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010

1111
steps:
1212
- name: checkout repo
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
- name: Set up Python
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v3
1616
with:
1717
python-version: "3.11"
1818
- name: install poetry

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ lint: ## run linters
2727

2828
test: ## test with coverage
2929
@poetry run \
30-
pytest --cov --cov-report xml --cov-report html
30+
pytest -v --cov --cov-report xml --cov-report html
3131

3232

3333
test-lint: ## run linters

0 commit comments

Comments
 (0)