Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: third_party/google_api_python_client/Makefile

Issue 963953003: OAuth2 support in depot_tools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: restore git_cl Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 pep8:
2 find googleapiclient samples -name "*.py" | xargs pep8 --ignore=E111,E20 2
3
4 APP_ENGINE_PATH=../google_appengine
5
6 test:
7 tox
8
9 .PHONY: coverage
10 coverage:
11 coverage erase
12 find tests -name "test_*.py" | xargs --max-args=1 coverage run -a runtes ts.py
13 coverage report
14 coverage html
15
16 .PHONY: docs
17 docs:
18 cd docs; ./build
19 mkdir -p docs/dyn
20 python describe.py
21
22 .PHONY: wiki
23 wiki:
24 python samples-index.py > ../google-api-python-client.wiki/SampleApps.wi ki
25
26 .PHONY: prerelease
27 prerelease:
28 -rm -rf dist/
29 -sudo rm -rf dist/
30 -rm -rf snapshot/
31 -sudo rm -rf snapshot/
32 # ./tools/gae-zip-creator.sh
33 python expandsymlinks.py
34 cd snapshot; python setup.py clean
35 cd snapshot; python setup.py sdist --formats=gztar,zip
36 cd snapshot; tar czf google-api-python-client-samples-$(shell python set up.py --version).tar.gz samples
37 cd snapshot; zip -r google-api-python-client-samples-$(shell python setu p.py --version).zip samples
38
39
40 .PHONY: release
41 release: prerelease
42 @echo "This target will upload a new release to PyPi and code.google.com hosting."
43 @echo "Are you sure you want to proceed? (yes/no)"
44 @read yn; if [ yes -ne $(yn) ]; then exit 1; fi
45 @echo "Here we go..."
46 cd snapshot; python setup.py sdist --formats=gztar,zip register upload
47
OLDNEW
« no previous file with comments | « third_party/google_api_python_client/MANIFEST.in ('k') | third_party/google_api_python_client/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698