1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-02 20:15:24 +02:00
* fix docs

* undo makefile alignment

Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
This commit is contained in:
wengtad 2021-06-13 15:20:43 +08:00 committed by GitHub
parent d28fe9833d
commit 27bf3802fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 21 additions and 21 deletions

View file

@ -30,15 +30,15 @@ purge: clean ## ⚠️ Removes All Developer Data for a fresh server start
rm -f ./dev/data/mealie.log
rm -f ./dev/data/.secret
clean: clean-pyc clean-test ## 🧹 remove all build, test, coverage and Python artifacts
clean: clean-pyc clean-test ## 🧹 Remove all build, test, coverage and Python artifacts
clean-pyc: ## 🧹 remove Python file artifacts
clean-pyc: ## 🧹 Remove Python file artifacts
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
clean-test: ## 🧹 remove test and coverage artifacts
clean-test: ## 🧹 Remove test and coverage artifacts
rm -fr .tox/
rm -f .coverage
rm -fr htmlcov/
@ -46,15 +46,15 @@ clean-test: ## 🧹 remove test and coverage artifacts
test-all: lint test ## 🧪 Check Lint Format and Testing
test: ## 🧪 run tests quickly with the default Python
test: ## 🧪 Run tests quickly with the default Python
poetry run pytest
lint: ## 🧺 check style with flake8
lint: ## 🧺 Check style with flake8
poetry run black .
poetry run black . --check
poetry run flake8 mealie tests
coverage: ## ☂️ check code coverage quickly with the default Python
coverage: ## ☂️ Check code coverage quickly with the default Python
poetry run pytest
coverage report -m
coverage html