File tree Expand file tree Collapse file tree 4 files changed +621
-4
lines changed
packages/google-cloud-core Expand file tree Collapse file tree 4 files changed +621
-4
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ branch = True
33
44[report]
55omit =
6- */google/cloud/_testing .py
7- fail_under = 100
8- show_missing = True
6+ */_generated/* .py
7+ # Packages in the "google.cloud" package that we don't own.
8+ */google/cloud/gapic/*
99exclude_lines =
1010 # Re-enable the standard pragma
1111 pragma: NO COVER
Original file line number Diff line number Diff line change 1+ language : python
2+ sudo : false
3+
4+ install :
5+ - pip install --upgrade pip tox
6+
7+ script :
8+ - tox -e py27
9+ - (cd core && tox -e py27)
10+ - tox -e py34
11+ - (cd core && tox -e py34)
12+ - tox -e lint
13+ - tox -e cover
14+ - (cd core && tox -e cover)
15+ - tox -e system-tests
16+ - tox -e system-tests3
17+ - scripts/update_docs.sh
18+
19+ after_success :
20+ - tox -e coveralls
21+
22+ deploy :
23+ provider : pypi
24+ user : gcloudpypi
25+ password :
26+ secure : LR0i9Oeu6kpLTYS5xK/zCng4gmdtPvFfD/XYdQhyY5jBibQkC2WUQU6nJA9bDXRxhBP5bUwXFGkbhOcOJgHNrUfmyPzpDbM8BR29KfY0WfdYv72gsGZOaekqCReFmHbqLE7qOQtHR5U3ey6ivcgw+hZO72Uu6qDCc9B8qwoBfAs=
27+ on :
28+ tags : true
29+ repo : GoogleCloudPlatform/google-cloud-python
30+ all_branches : true
31+ # 'bdist_wheel' builds disabled until #1879 et al. are resolved.
32+ distributions : " sdist"
33+
34+ cache :
35+ directories :
36+ - ${HOME}/.cache/pip
You can’t perform that action at this time.
0 commit comments