forked from GetSimpl/cloudlift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (19 loc) · 671 Bytes
/
Makefile
File metadata and controls
27 lines (19 loc) · 671 Bytes
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
clean:
rm -rf dist/* build/* +
find . -name '*.pyc' -exec rm --force {} +
find . -name '*.pyo' -exec rm --force {} +
test-template:
python3 -m pytest test/deployment/service_template_generator_test.py -vv
test-integration:
pytest -s test/test_cloudlift.py
package: clean
python3 setup.py sdist bdist_wheel
package-test-upload: package
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
install-test-package:
pip install -r requirements.txt
pip uninstall -y cloudlift
pip install -U --index-url https://test.pypi.org/simple/ --no-deps cloudlift
cloudlift --version
package-upload: package
python3 -m twine upload dist/*