File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ jobs:
12
12
- name : Install dev requirements
13
13
run : pip install -r requirements_dev.txt
14
14
- name : Check black
15
- run : black --check oc4ids_datastore_pipeline/
15
+ run : black --check oc4ids_datastore_pipeline/ tests/
16
16
- name : Check isort
17
- run : isort --check-only oc4ids_datastore_pipeline/
17
+ run : isort --check-only oc4ids_datastore_pipeline/ tests/
18
18
- name : Check flake8
19
- run : flake8 oc4ids_datastore_pipeline/
19
+ run : flake8 oc4ids_datastore_pipeline/ tests/
20
20
- name : Check mypy
21
- run : mypy oc4ids_datastore_pipeline/
21
+ run : mypy oc4ids_datastore_pipeline/ tests/
22
22
- name : Run tests
23
23
run : pytest
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ oc4ids-datastore-pipeline
26
26
### Run linting and type checking
27
27
28
28
```
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/
33
33
```
34
34
35
35
### Run tests
You can’t perform that action at this time.
0 commit comments