Skip to content

Commit

Permalink
Update black commands in Makefile to check only .py files
Browse files Browse the repository at this point in the history
  • Loading branch information
hawflau committed Nov 14, 2020
1 parent e14f2e6 commit 115ff09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -9,10 +9,10 @@ test:
pytest --cov samtranslator --cov-report term-missing --cov-fail-under 95 tests

black:
black setup.py samtranslator/* tests/* bin/*.py
black setup.py samtranslator/**/*.py tests/**/*.py bin/*.py

black-check:
black --check setup.py samtranslator/* tests/* bin/*.py
black --check setup.py samtranslator/**/*.py tests/**/*.py bin/*.py

# Command to run everytime you make changes to verify everything works
dev: test
Expand Down

0 comments on commit 115ff09

Please sign in to comment.