aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-10-22 19:24:58 -0700
committerBryan Newbold <bnewbold@archive.org>2021-10-22 19:24:58 -0700
commit331288cd15d471b2ae362bf6c990f627686067d8 (patch)
tree1a8d0347b75cf2565e769067d6ae3887d1632474
parentfa1e2b68fdc8426b0e6239c65361b605eba5fe7b (diff)
downloadgrobid_tei_xml-331288cd15d471b2ae362bf6c990f627686067d8.tar.gz
grobid_tei_xml-331288cd15d471b2ae362bf6c990f627686067d8.zip
make: fix test imports with fmt
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fe12878..0a5c8be 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ lint: ## Run lints (eg, flake8, mypy)
.PHONY: fmt
fmt: ## Run code formating on all source code
- pipenv run isort --atomic grobid_tei_xml/*.py
+ pipenv run isort --atomic grobid_tei_xml/*.py tests/*.py
pipenv run yapf -p -i -r grobid_tei_xml tests
.PHONY: test