Skip to content

Commit f671fcc

Browse files
authored
Move tests to root folder (#106)
1 parent a8c456b commit f671fcc

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
4646
- name: Mypy
4747
run: |
48-
poetry run mypy --incremental --no-install-types --show-error-codes --pretty src
48+
poetry run mypy --incremental --no-install-types --show-error-codes --pretty src tests
4949
5050
- name: Tests
5151
run: |
52-
poetry run coverage run -m pytest src --cov-config=.coveragerc
52+
poetry run coverage run -m pytest --cov-config=.coveragerc
5353
5454
- name: Tests coverage
5555
run: |

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pre_commit:
2626
poetry run pre-commit run -a
2727

2828
test:
29-
poetry run pytest src
29+
poetry run pytest
3030

3131
test_cov:
3232
poetry run coverage run -m pytest src --cov-config=.coveragerc
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)