mirror of
https://github.com/kennethreitz/records.git
synced 2026-06-05 14:50:18 +00:00
12 lines
244 B
Makefile
12 lines
244 B
Makefile
testall:
|
|
tox
|
|
test: init
|
|
pipenv run pytest tests
|
|
init:
|
|
pipenv install --skip-lock --dev
|
|
publish:
|
|
python setup.py register
|
|
python setup.py sdist upload
|
|
python setup.py bdist_wheel --universal upload
|
|
rm -fr build dist .egg records.egg-info
|