Skip to content

Commit 2b6b9ba

Browse files
ci: run linters on test directory
1 parent 4319e12 commit 2b6b9ba

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
- name: Install dev requirements
1313
run: pip install -r requirements_dev.txt
1414
- name: Check black
15-
run: black --check oc4ids_datastore_pipeline/
15+
run: black --check oc4ids_datastore_pipeline/ tests/
1616
- name: Check isort
17-
run: isort --check-only oc4ids_datastore_pipeline/
17+
run: isort --check-only oc4ids_datastore_pipeline/ tests/
1818
- name: Check flake8
19-
run: flake8 oc4ids_datastore_pipeline/
19+
run: flake8 oc4ids_datastore_pipeline/ tests/
2020
- name: Check mypy
21-
run: mypy oc4ids_datastore_pipeline/
21+
run: mypy oc4ids_datastore_pipeline/ tests/
2222
- name: Run tests
2323
run: pytest

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ oc4ids-datastore-pipeline
2626
### Run linting and type checking
2727

2828
```
29-
black oc4ids_datastore_pipeline/
30-
isort oc4ids_datastore_pipeline/
31-
flake8 oc4ids_datastore_pipeline/
32-
mypy oc4ids_datastore_pipeline/
29+
black oc4ids_datastore_pipeline/ tests/
30+
isort oc4ids_datastore_pipeline/ tests/
31+
flake8 oc4ids_datastore_pipeline/ tests/
32+
mypy oc4ids_datastore_pipeline/ tests/
3333
```
3434

3535
### Run tests

0 commit comments

Comments
 (0)