aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2020-11-12 20:45:17 +0100
committerMartin Czygan <martin.czygan@gmail.com>2020-11-12 20:45:17 +0100
commit4eab32b1c5929b2d7f2e6d8fed76bdb49bf9c699 (patch)
treec326180ad8e5431026cd2f46da571307d226aa38 /Makefile
parent7c1927dd2800069b74bbe2f561127122daa0870f (diff)
parent30eab70787584a333714b18f1d64f362e4768730 (diff)
downloadfuzzycat-4eab32b1c5929b2d7f2e6d8fed76bdb49bf9c699.tar.gz
fuzzycat-4eab32b1c5929b2d7f2e6d8fed76bdb49bf9c699.zip
Merge branch 'bnewbold-sandcrawler' of https://github.com/bnewbold/fuzzycat into bnewbold-bnewbold-sandcrawler
* 'bnewbold-sandcrawler' of https://github.com/bnewbold/fuzzycat: sandcrawler slugify: yet more unicode corner-cases add sandcrawler-style title key method cluster: count empty keys (and don't return them) pipenv: explicit regex dependency gitignore: add .swp (vim) make: run pytest over fuzzycat/ to catch inline tests add support for key denylist
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7a0490e..25efac0 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ deps: ## Install dependencies from setup.py into pipenv
pipenv install --pre '-e .[dev]'
.PHONY: style
-style: ## Apply import sorting and black source formatting on all files
+style: ## Apply import sorting and yapf source formatting on all files
isort --atomic fuzzycat/*
yapf -p -i -r fuzzycat/*
yapf -p -i -r tests
@@ -27,11 +27,11 @@ dist: ## Create source distribution and wheel
.PHONY: cov
cov: ## Run coverage report
- pytest --cov=fuzzycat tests/
+ pytest --cov=fuzzycat fuzzycat/*.py tests/
.PHONY: test
test: ## Run coverage report
- pytest -v tests/
+ pytest -v fuzzycat/*.py tests/
.PHONY: lint
lint: $(PY_FILES)