Skip to content

Commit

Permalink
Another template update
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadair committed Mar 20, 2024
1 parent 1bc34e5 commit 019d80a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "https://github.com/sunpy/package-template",
"commit": "d91a5d5e80dfa4402924cc0abfe104db30e239f9",
"commit": "29a55419c27cd7a72bfd60fee7cd92fb59769425",
"checkout": null,
"context": {
"cookiecutter": {
Expand Down
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ exclude =
__pycache__
docs/conf.py
build
__init__.py
dkist/__init__.py
extern
sphinx
conftest.py
Expand Down
4 changes: 3 additions & 1 deletion .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ extend-ignore = [
# Part of configuration, not a package.
"setup.py" = ["INP001"]
"conftest.py" = ["INP001"]
"docs/conf.py" = [
"E402" # Module imports not at top of file
]
"docs/*.py" = [
"INP001", # Implicit-namespace-package. The examples are not a package.
"E402", # Module imports not at top of file
]
"__init__.py" = ["E402", "F401", "F403"]
"test_*.py" = ["B011", "D", "E402", "PGH001", "S101"]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ set_env =
COLUMNS = 180
devdeps: PIP_EXTRA_INDEX_URL = https://pypi.anaconda.org/astropy/simple https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
# Define the base test command here to allow us to add more flags for each tox factor
PYTEST_COMMAND = pytest -vvv -r fEs --pyargs dkist --cov-report=xml --cov=dkist --cov-config={toxinidir}/pyproject.toml {toxinidir}/docs
PYTEST_COMMAND = pytest -vvv -r fEs --pyargs dkist --cov-report=xml --cov=dkist --cov-config={toxinidir}/.coveragerc {toxinidir}/docs

deps =
# For packages which publish nightly wheels this will pull the latest nightly
Expand Down

0 comments on commit 019d80a

Please sign in to comment.