Skip to content

Commit 7bd7aeb

Browse files
author
Jon Wayne Parrott
committed
Merge pull request GoogleCloudPlatform#234 from GoogleCloudPlatform/noxify
Noxify
2 parents 736c565 + 879176b commit 7bd7aeb

File tree

14 files changed

+179
-160
lines changed

14 files changed

+179
-160
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ secrets.tar
1818
.cache
1919
junit.xml
2020
credentials.dat
21+
.nox

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,16 @@ env:
1414
- PATH=${PATH}:${HOME}/gcloud/google-cloud-sdk/bin
1515
- GOOGLE_APPLICATION_CREDENTIALS=${TRAVIS_BUILD_DIR}/testing/resources/service-account.json
1616
- GOOGLE_CLIENT_SECRETS=${TRAVIS_BUILD_DIR}/testing/resources/client-secrets.json
17-
- GAE_PYTHONPATH=${HOME}/.cache/google_appengine
1817
- GAE_ROOT=${HOME}/.cache/
1918
- secure: Orp9Et2TIwCG/Hf59aa0NUDF1pNcwcS4TFulXX175918cFREOzf/cNZNg+Ui585ZRFjbifZdc858tVuCVd8XlxQPXQgp7bwB7nXs3lby3LYg4+HD83Gaz7KOWxRLWVor6IVn8OxeCzwl6fJkdmffsTTO9csC4yZ7izHr+u7hiO4=
2019
before_install:
20+
- pip install --upgrade pip wheel virtualenv
2121
- openssl aes-256-cbc -k "$secrets_password" -in secrets.tar.enc -out secrets.tar -d
2222
- tar xvf secrets.tar
2323
install:
24-
- pip install tox coverage
24+
- pip install nox-automation coverage
2525
script:
2626
- source ${TRAVIS_BUILD_DIR}/testing/resources/test-env.sh
27-
- tox
27+
- nox --stop-on-first-error -s lint travis
28+
after_script:
2829
- coverage report

conftest.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# Copyright 2016 Google Inc. All Rights Reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
115
import os
216

317
import pytest
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django==1.9.2
1+
Django==1.9.3
22
mysqlclient==1.3.7
33
wheel==0.29.0
44
gunicorn==19.4.5
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==0.10.1
22
gcloud==0.10.1
33
gunicorn==19.4.5
4-
oauth2client==2.0.0.post1
4+
oauth2client==2.0.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django==1.9.2
1+
Django==1.9.3
22
mysqlclient==1.3.7
33
wheel==0.29.0
44
gunicorn==19.4.5
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Django==1.9.2
1+
Django==1.9.3
22
gunicorn==19.4.5

managed_vms/kinto/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
gunicorn==19.4.5
2-
oauth2client==2.0.0.post1
2+
oauth2client==2.0.1
33
kinto==1.11.2

managed_vms/pubsub/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==0.10.1
22
gcloud==0.10.1
33
gunicorn==19.4.5
4-
oauth2client==2.0.0.post1
4+
oauth2client==2.0.1

managed_vms/sendgrid/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Flask==0.10.1
2-
sendgrid==1.6.22
2+
sendgrid==2.2.1
33
gunicorn==19.4.5

0 commit comments

Comments
 (0)