Skip to content

Commit

Permalink
Fix mypy action
Browse files Browse the repository at this point in the history
  • Loading branch information
JosePizarro3 committed Jun 3, 2024
1 parent 78d992a commit 5734a06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
pip install coverage coveralls
- name: mypy
run: |
python -m mypy --ignore-missing-imports --follow-imports=silent --no-strict-optional src/nomad_simulations tests
python -m mypy --ignore-missing-imports --follow-imports=silent --no-strict-optional src/nomad_simulations_data tests
- name: Test with pytest
run: |
python -m coverage run -m pytest -sv tests
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dev = [
]

[tool.ruff]
include = ["src/nomad_simulations/*.py", "src/nomad_simulations/schema_sections/*.py", "tests/*.py"]
include = ["src/nomad_simulations_data/*.py", "src/nomad_simulations_data/schema_sections/*.py", "tests/*.py"]
lint.select = [
"E", # pycodestyle
"W", # pycodestyle
Expand Down

0 comments on commit 5734a06

Please sign in to comment.