Skip to content

Commit 0cce05f

Browse files
dhermeslukesneeringer
authored andcommitted
Removing most remnants of Travis CI. (googleapis#3250)
1 parent 175a587 commit 0cce05f

3 files changed

Lines changed: 2 additions & 11 deletions

File tree

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Google Cloud Python Client
55

66
.. _Google Cloud Platform: https://cloud.google.com/
77

8-
|pypi| |circleci| |build| |appveyor| |coverage| |versions|
8+
|pypi| |circleci| |appveyor| |coverage| |versions|
99

1010
- `Homepage`_
1111
- `API Documentation`_
@@ -152,8 +152,6 @@ Apache 2.0 - See `LICENSE`_ for more information.
152152

153153
.. _LICENSE: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/LICENSE
154154

155-
.. |build| image:: https://travis-ci.org/GoogleCloudPlatform/google-cloud-python.svg?branch=master
156-
:target: https://travis-ci.org/GoogleCloudPlatform/google-cloud-python
157155
.. |circleci| image:: https://circleci.com/gh/GoogleCloudPlatform/google-cloud-python.svg?style=shield
158156
:target: https://circleci.com/gh/GoogleCloudPlatform/google-cloud-python
159157
.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/googlecloudplatform/google-cloud-python?branch=master&svg=true

test_utils/test_utils/system.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ def unique_resource_id(delimiter='_'):
7474
Intended to help locate resources created in particular
7575
testing environments and at particular times.
7676
"""
77-
build_id = os.getenv(
78-
'TRAVIS_BUILD_ID', os.getenv('CIRCLE_BUILD_NUM', ''))
77+
build_id = os.getenv('CIRCLE_BUILD_NUM', '')
7978
if build_id == '':
8079
return '%s%d' % (delimiter, 1000 * time.time())
8180
else:

0 commit comments

Comments
 (0)