Skip to content

Commit

Permalink
ci: run linters on test directory
Browse files Browse the repository at this point in the history
  • Loading branch information
tillywoodfield committed Feb 4, 2025
1 parent 4319e12 commit 2b6b9ba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
- name: Install dev requirements
run: pip install -r requirements_dev.txt
- name: Check black
run: black --check oc4ids_datastore_pipeline/
run: black --check oc4ids_datastore_pipeline/ tests/
- name: Check isort
run: isort --check-only oc4ids_datastore_pipeline/
run: isort --check-only oc4ids_datastore_pipeline/ tests/
- name: Check flake8
run: flake8 oc4ids_datastore_pipeline/
run: flake8 oc4ids_datastore_pipeline/ tests/
- name: Check mypy
run: mypy oc4ids_datastore_pipeline/
run: mypy oc4ids_datastore_pipeline/ tests/
- name: Run tests
run: pytest
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ oc4ids-datastore-pipeline
### Run linting and type checking

```
black oc4ids_datastore_pipeline/
isort oc4ids_datastore_pipeline/
flake8 oc4ids_datastore_pipeline/
mypy oc4ids_datastore_pipeline/
black oc4ids_datastore_pipeline/ tests/
isort oc4ids_datastore_pipeline/ tests/
flake8 oc4ids_datastore_pipeline/ tests/
mypy oc4ids_datastore_pipeline/ tests/
```

### Run tests
Expand Down

0 comments on commit 2b6b9ba

Please sign in to comment.