forked from GoogleCloudPlatform/cloud-opensource-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nox.py
113 lines (86 loc) · 3.23 KB
/
nox.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Copyright 2018 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Nox config for running lint and unit tests."""
from __future__ import absolute_import
import os
import nox
LOCAL_DEPS = ['compatibility_lib']
@nox.session
def lint(session):
"""Run flake8.
Returns a failure if flake8 finds linting errors or sufficiently
serious code quality issues.
"""
session.interpreter = 'python3.6'
session.install('flake8')
session.run('flake8',
'--exclude=--exclude=__pycache__,dist,.git,'
'build,.tox,.nox,.idea,mock_*,test_*,*_test')
@nox.session
@nox.parametrize('py', ['3.5', '3.6'])
def unit(session, py):
"""Run the unit test suite.
Unit test files should be named like test_*.py and in the same directory
as the file being tested.
"""
session.interpreter = 'python{}'.format(py)
# Install all test dependencies, then install this package in-place.
session.install('-e', ','.join(LOCAL_DEPS))
session.install('-r', 'requirements-test.txt')
# Run py.test against the unit tests.
session.run(
'py.test',
'--quiet',
'.',
'--ignore=system_test',
*session.posargs
)
@nox.session
@nox.parametrize('py', ['3.6'])
def system(session, py):
"""Run the system test suite."""
# Sanity check: Only run system tests if the environment variable is set.
if not os.environ.get('GOOGLE_APPLICATION_CREDENTIALS', ''):
session.skip('Credentials must be set via environment variable.')
# Run the system tests against latest Python 2 and Python 3 only.
session.interpreter = 'python{}'.format(py)
# Set the virtualenv dirname.
session.virtualenv_dirname = 'sys-' + py
# Build and install compatibility_lib
session.install('-e', ','.join(LOCAL_DEPS))
# Install all test dependencies.
session.install('-r', 'requirements-test.txt')
# Run py.test against the system tests.
session.run(
'py.test',
'-s',
'system_test/',
# Skip the system test for compatibility server as circle ci does not
# support running docker in docker.
'--ignore=system_test/test_compatibility_checker_server.py',
*session.posargs
)
@nox.session
def update_dashboard(session):
"""Build the dashboard."""
session.interpreter = 'python3.6'
session.install('compatibility-lib')
session.install('-r', 'requirements-test.txt')
session.install('-e', ','.join(LOCAL_DEPS))
# Set the virtualenv dirname.
session.virtualenv_dirname = 'dashboard'
session.chdir(os.path.realpath(os.path.dirname(__file__)))
# Build the dashboard!
session.run(
'bash', os.path.join('.', 'scripts', 'update_dashboard.sh'))