Skip to content

Commit b436ad5

Browse files
committed
Fixed merge conflicts.
2 parents 9f97439 + a2510fd commit b436ad5

File tree

336 files changed

+6076
-2077
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

336 files changed

+6076
-2077
lines changed

.coveragerc

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,11 @@
11
[run]
2-
include =
3-
appengine/*
4-
bigquery/*
5-
bigtable/*
6-
blog/*
7-
compute/*
8-
datastore/*
9-
dataproc/*
10-
dns/*
11-
error_reporting/*
12-
language/*
13-
logging/*
14-
monitoring/*
15-
pubsub/*
16-
speech/*
17-
storage/*
18-
translate/*
19-
vision/*
2+
omit =
3+
lib/*
4+
env/*
5+
*/.nox/*
6+
*/conftest.py
7+
*/google_appengine/*
8+
209
[report]
2110
exclude_lines =
2211
pragma: NO COVER

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ addons:
2323
- python3.5-dev
2424
install:
2525
- pip install --upgrade pip wheel virtualenv
26-
- pip install nox-automation coverage
26+
- pip install --upgrade nox-automation coverage
27+
# Temporarily install this from source.
28+
- pip install --upgrade git+https://github.com/dhermes/ci-diff-helper.git
2729
script:
2830
- ./scripts/travis.sh
29-
after_script:
30-
- coverage report

ISSUE_TEMPLATE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## In which file did you encounter the issue?
2+
3+
<!-- Please provide the full path to the file, to avoid ambiguity -->
4+
5+
### Did you change the file? If so, how?
6+
7+
<!-- A diff would be helpful; otherwise, a description -->
8+
9+
## Describe the issue
10+
11+
<!-- Please be specific. Copying and pasting your invocation and the entire
12+
output is often helpful. -->

appengine/flexible/analytics/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
runtime: python
2-
vm: true
2+
env: flex
33
entrypoint: gunicorn -b :$PORT main:app
44

55
runtime_config:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Flask==0.11.1
1+
Flask==0.12
22
gunicorn==19.6.0
3-
requests[security]==2.11.1
3+
requests[security]==2.12.4
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
runtime: python
2-
vm: true
2+
env: flex
33
entrypoint: gunicorn -b :$PORT main:app
44

55
runtime_config:
66
python_version: 3
77

88
#[START env]
99
env_variables:
10-
# Replace user, password, database, project, and instance with the values obtained
10+
# Replace user, password, database, and instance connection name with the values obtained
1111
# when configuring your Cloud SQL instance.
1212
SQLALCHEMY_DATABASE_URI: >-
13-
mysql+pymysql://USER:PASSWORD@/DATABASE?unix_socket=/cloudsql/PROJECT:REGION:INSTANCE
13+
mysql+pymysql://USER:PASSWORD@/DATABASE?unix_socket=/cloudsql/INSTANCE_CONNECTION_NAME
1414
#[END env]
1515

1616
#[START cloudsql_settings]
1717
# Replace project and instance with the values obtained when configuring your
1818
# Cloud SQL instance.
1919
beta_settings:
20-
cloud_sql_instances: PROJECT:REGION:INSTANCE
20+
cloud_sql_instances: INSTANCE_CONNECTION_NAME
2121
#[END cloudsql_settings]

appengine/flexible/cloudsql/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import socket
1919

2020
from flask import Flask, request
21-
from flask.ext.sqlalchemy import SQLAlchemy
21+
from flask_sqlalchemy import SQLAlchemy
2222

2323

2424
app = Flask(__name__)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Flask==0.11.1
1+
Flask==0.12
22
Flask-SQLAlchemy==2.1
33
gunicorn==19.6.0
44
PyMySQL==0.7.9

appengine/flexible/datastore/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ When running locally, you can use the [Google Cloud SDK](https://cloud.google.co
1414

1515
$ gcloud init
1616

17-
Set the ``GCLOUD_PROJECT`` environment variable to your Project ID before starting your application:
17+
Starting your application:
1818

19-
$ export GCLOUD_PROJECT=[your-project-id]
2019
$ python main.py
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
runtime: python
2-
vm: true
2+
env: flex
33
entrypoint: gunicorn -b :$PORT main:app
44

55
runtime_config:
66
python_version: 3
7-
8-
# [START env_variables]
9-
env_variables:
10-
GCLOUD_PROJECT: your-project-id
11-
# [END env_variables]

0 commit comments

Comments
 (0)