From f925476f24e72d61ffc6e5effab81d2c8cef9239 Mon Sep 17 00:00:00 2001 From: JosePizarro3 Date: Mon, 3 Jun 2024 16:15:52 +0200 Subject: [PATCH] Fix mypy action --- .github/workflows/actions.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 67b2cf0e..01af9d7f 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 9c7ff9c0..f9d18e9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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