Lines Matching +full:upload +full:- +full:coverage
2 find googleapiclient samples -name "*.py" | xargs pep8 --ignore=E111,E202
9 .PHONY: coverage
10 coverage: target
11 coverage erase
12 find tests -name "test_*.py" | xargs --max-args=1 coverage run -a runtests.py
13 coverage report
14 coverage html
19 mkdir -p docs/dyn
24 python samples-index.py > ../google-api-python-client.wiki/SampleApps.wiki
28 -rm -rf dist/
29 -sudo rm -rf dist/
30 -rm -rf snapshot/
31 -sudo rm -rf snapshot/
34 cd snapshot; python setup.py sdist --formats=gztar,zip bdist_wheel --universal
35 …cd snapshot; tar czf google-api-python-client-samples-$(shell python setup.py --version).tar.gz sa…
36 cd snapshot; zip -r google-api-python-client-samples-$(shell python setup.py --version).zip samples
41 @echo "This target will upload a new release to PyPi and code.google.com hosting."
43 @read yn; if [ yes -ne $(yn) ]; then exit 1; fi
45 cd snapshot; python setup.py sdist --formats=gztar,zip bdist_wheel --universal
46 cd snapshot; twine upload dist/*