Skip to content

Commit

Permalink
add notebooks to poe tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
carlocagnetta committed Jul 3, 2024
1 parent b72f0ed commit 11ffb07
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,12 @@ PYDEVD_DISABLE_FILE_VALIDATION="1"
test = "pytest test --cov=armscan_env --cov-report=xml --cov-report=term-missing --durations=0 -v --color=yes"
# Adjust to a smaller set of tests if appropriate
test-subset = "pytest test --color=yes"
_black_check = "black --check src scripts docs"
_ruff_check = "ruff check src scripts docs"
_ruff_check_nb = "nbqa ruff docs"
_black_format = "black src scripts docs"
_ruff_format = "ruff --fix src scripts docs"
_ruff_format_nb = "nbqa ruff --fix docs"
_black_check = "black --check src scripts docs notebooks"
_ruff_check = "ruff check src scripts docs notebooks"
_ruff_check_nb = "nbqa ruff docs notebooks"
_black_format = "black src scripts docs notebooks"
_ruff_format = "ruff --fix src scripts docs notebooks"
_ruff_format_nb = "nbqa ruff --fix docs notebooks"
lint = ["_black_check", "_ruff_check", "_ruff_check_nb"]
_poetry_install_sort_plugin = "poetry self add poetry-plugin-sort"
_poetry_sort = "poetry sort"
Expand Down

0 comments on commit 11ffb07

Please sign in to comment.