Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 authored Mar 7, 2024
1 parent d882ebb commit 7ed8a90
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand Down Expand Up @@ -62,7 +63,7 @@ packages = ["src/pynwb"]
addopts = "--cov --cov-report html" # generates coverage report in html format without showing anything on the terminal.

[tool.codespell]
skip = "htmlcov,.git,.mypy_cache,.pytest_cache,.coverage,*.pdf,*.svg,venvs,.tox,nwb-schema"
skip = "htmlcov,.git,.mypy_cache,.pytest_cache,.coverage,*.pdf,*.svg,venvs,.tox,nwb-schema,./docs/_build/*,*.ipynb"
ignore-words-list = "datas"

[tool.coverage.run]
Expand Down Expand Up @@ -97,7 +98,7 @@ line-length = 120
[tool.ruff.per-file-ignores]
"docs/gallery/*" = ["E402", "T201"]
"src/*/__init__.py" = ["F401"]
"test_gallery.py" = ["T201"]
# "test_gallery.py" = ["T201"] # Uncomment when test_gallery.py is created

[tool.ruff.mccabe]
max-complexity = 17
Expand Down

0 comments on commit 7ed8a90

Please sign in to comment.