-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
35 lines (26 loc) · 1.19 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
34
35
help: ## Show this help.
@egrep -h '(\s##\s|^##\s)' $(MAKEFILE_LIST) | egrep -v '^--' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m %-35s\033[0m %s\n", $$1, $$2}'
tests: ## Run tests
python3 -m unittest discover src/
pytests: ## Run detailed tests
pytest -v
tests_installed_package: ## Tests the installed insel package
pytest --pyargs insel -v
coverage: ## Check tests coverage
ruby misc/check_block_coverage.rb
clean: ## Remove pyc and pycache
find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
rm -f dist/*.tar.gz
rm -f dist/*.whl
#NOTE: .egg-info holds too much information
rm -rf src/insel.egg-info/
build_package: clean pytests ## Build PyPI package
python3 -m pip install --upgrade build
python3 -m build
unzip -l dist/*.whl
_check_upload:
@echo -n "Are you sure you want to upload the package to PyPI? [y/N] " && read ans && [ $${ans:-N} = y ]
upload_package_to_testpypi: _check_upload build_package ## Upload PyPI package to https://test.pypi.org/
python3 -m twine upload --repository testpypi dist/* --verbose
upload_package_to_pypi: _check_upload build_package ## Upload PyPI package to https://pypi.org/
python3 -m twine upload dist/* --verbose