We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
commit
pre-commit
1 parent 7412e8d commit ce2e6e0Copy full SHA for ce2e6e0
2 files changed
pyproject.toml
@@ -27,6 +27,7 @@ dev = [
27
"black", # Used to format code
28
"pre-commit", # Used to run checks prior to committing code
29
"pytest", # Used to run tests
30
+ "pytest-cov", # Used to measure test coverage
31
"pylint", # test pylint in unit tests
32
"pytest-copie", # Used to create hydrated copier projects for testing
33
"tox", # Used to run tests in multiple environments
python-project-template/.pre-commit-config.yaml.jinja
@@ -18,7 +18,7 @@ repos:
18
description: Clear output from Jupyter notebooks.
19
files: \.ipynb$
20
exclude: ^docs/pre_executed
21
- stages: [commit]
+ stages: [pre-commit]
22
language: system
23
entry: jupyter nbconvert --clear-output
24
# Prevents committing directly branches named 'main' and 'master'.
0 commit comments