Skip to content

Commit 0d7008e

Browse files
authored
Merge pull request #2367 from dhermes/make-core-subpackage
Moving core into designated package.
1 parent 850884d commit 0d7008e

File tree

4 files changed

+621
-4
lines changed

4 files changed

+621
-4
lines changed

packages/google-cloud-core/.coveragerc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ branch = True
33

44
[report]
55
omit =
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/*
99
exclude_lines =
1010
# Re-enable the standard pragma
1111
pragma: NO COVER
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

0 commit comments

Comments
 (0)