https://github.com/dataiku-research/cardinal
Raw File
Tip revision: 96ee635febb69bd5b34c8d3ccc22c54e122659a7 authored by Alexandre Abraham on 20 October 2022, 15:21:52 UTC
Fix changes
Tip revision: 96ee635
Makefile
test-code:
	python -m pytest --pyargs cardinal

test-doc:
	pytest --doctest-glob='*.rst' `find doc/ -name '*.rst'`

dist:
	python setup.py sdist bdist_wheel

test-release:
	python -m twine upload --repository testpypi dist/*

release:
	python -m twine upload dist/*

test: test-code test-doc
back to top