2019-06-18 16:48:39 +00:00
|
|
|
VERSION ?= $(shell grep '__version__' cloudbender/__init__.py | cut -d' ' -f3 | cut -d'-' -f1 | sed -e 's/"//g')
|
|
|
|
PACKAGE_FILE := dist/cloudbender-$(VERSION)-py2.py3-none-any.whl
|
|
|
|
|
|
|
|
.PHONY: test build test_upload upload all
|
|
|
|
|
|
|
|
all: test build
|
2019-02-07 22:05:33 +00:00
|
|
|
|
|
|
|
test:
|
2019-06-18 16:48:39 +00:00
|
|
|
flake8 --ignore=E501 cloudbender tests
|
|
|
|
TEST=True pytest --log-cli-level=DEBUG
|
2019-02-07 22:05:33 +00:00
|
|
|
|
|
|
|
clean:
|
2019-09-02 11:13:40 +00:00
|
|
|
rm -rf .cache build .coverage .eggs cloudbender.egg-info .pytest_cache dist
|
2019-06-18 16:48:39 +00:00
|
|
|
|
|
|
|
build: $(PACKAGE_FILE)
|
2019-02-07 22:05:33 +00:00
|
|
|
|
2019-06-18 16:48:39 +00:00
|
|
|
$(PACKAGE_FILE):
|
2019-02-07 22:05:33 +00:00
|
|
|
python setup.py bdist_wheel --universal
|
|
|
|
|
2019-06-18 16:48:39 +00:00
|
|
|
test_upload: $(PACKAGE_FILE)
|
2019-02-07 22:05:33 +00:00
|
|
|
twine upload --repository-url https://test.pypi.org/legacy/ dist/cloudbender-*.whl
|
|
|
|
|
2019-06-18 16:48:39 +00:00
|
|
|
upload: $(PACKAGE_FILE)
|
2019-02-07 22:05:33 +00:00
|
|
|
twine upload dist/cloudbender-*.whl
|