Skip to content

Commit

Permalink
Updating some files
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahbaumann committed Sep 30, 2024
1 parent dde62ba commit 7af4f79
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

- name: Run tests
run: |
pytest -n logical -v --cov=openfe_gromacs --cov-report=xml --color=yes openfe_gromacs/tests/
pytest -n logical -v --cov=src/openfe_gromacs --cov-report=xml --color=yes src/openfe_gromacs/tests/
- name: CodeCov
uses: codecov/codecov-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ repos:
rev: 22.12.0
hooks:
- id: black
files: ^openfe_gromacs
files: ^src/openfe_gromacs
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort
files: ^openfe_gromacs
files: ^src/openfe_gromacs
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
hooks:
- id: flake8
files: ^openfe_gromacs
files: ^src/openfe_gromacs
additional_dependencies: [Flake8-pyproject]
- repo: https://github.com/asottile/pyupgrade
rev: 'v3.3.1'
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ match = ["*"]
default-tag = "0.0.0"

[tool.versioningit.write]
file = "openfe_gromacs/_version.py"
file = "src/openfe_gromacs/_version.py"


[tool.coverage.run]
Expand All @@ -91,7 +91,7 @@ omit = [
# Omit the tests
"*/tests/*",
# Omit generated versioneer
"openfe_gromacs/_version.py"
"src/openfe_gromacs/_version.py"
]

[tool.flake8]
Expand Down

0 comments on commit 7af4f79

Please sign in to comment.