From 115ff09cd1db5939d21ef4d3c8c8e5690629f9ab Mon Sep 17 00:00:00 2001 From: Wing Fung Lau <4760060+hawflau@users.noreply.github.com> Date: Sat, 14 Nov 2020 11:14:37 -0800 Subject: [PATCH] Update black commands in Makefile to check only .py files --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c2b980b8f..6332e72c0 100755 --- a/Makefile +++ b/Makefile @@ -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