Skip to content

Commit 115ff09

Browse files
committed
Update black commands in Makefile to check only .py files
1 parent e14f2e6 commit 115ff09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ test:
99
pytest --cov samtranslator --cov-report term-missing --cov-fail-under 95 tests
1010

1111
black:
12-
black setup.py samtranslator/* tests/* bin/*.py
12+
black setup.py samtranslator/**/*.py tests/**/*.py bin/*.py
1313

1414
black-check:
15-
black --check setup.py samtranslator/* tests/* bin/*.py
15+
black --check setup.py samtranslator/**/*.py tests/**/*.py bin/*.py
1616

1717
# Command to run everytime you make changes to verify everything works
1818
dev: test

0 commit comments

Comments
 (0)