Skip to content

Commit

Permalink
docs: Updated makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
frgfm committed Dec 1, 2021
1 parent 99e1d78 commit 5bb0a1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# this target runs checks on all files
quality:
isort **/*.py -c -v
isort . -c -v
flake8 ./
mypy torchcam/

# this target runs checks on all files and potentially modifies some of them
style:
isort **/*.py
isort .

# Run tests for the library
test:
coverage run -m pytest tests/

# Check that docs can build
docs:
cd docs && bash build.sh
cd docs && bash build.sh

0 comments on commit 5bb0a1a

Please sign in to comment.