-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
33 lines (32 loc) · 1.17 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.PHONY: help
help: ## Show this help
@egrep -h '\s##\s' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
init: ## Install package dependencies
cp .env-example .env
pip install --upgrade pip
# install test project and package dependencies
pip install -r requirements.txt
# install package and dev dependencies (see setup.py)
pip install '.[dev]'
init_integrations: ## Install frontend dependencies for integration tests
npm install
test: ## Run package tests
python -m pytest tests
integration_test: ## Run package integration tests
python craft js_routes:generate -p tests/js/routes.js
npm test
ci: ## [CI] Run package tests and lint
make test
make lint
lint: ## Run code linting
python -m flake8 .
format: ## Format code with Black
black .
coverage: ## Run package tests and upload coverage reports
python -m pytest --cov-report term --cov-report xml --cov=src/masonite/js_routes tests
publish: ## Publish package to pypi
python setup.py sdist bdist_wheel
twine upload dist/*
rm -fr build dist .egg src/masonite_js_routes.egg-info
pypirc: ## Copy the template .pypirc in the repo to your home directory
cp .pypirc ~/.pypirc