Skip to content

Commit

Permalink
nox unittest updates (#4646)
Browse files Browse the repository at this point in the history
  • Loading branch information
chemelnucfin committed Jan 3, 2018
1 parent 9c6ff6e commit d33c8a9
Showing 1 changed file with 41 additions and 12 deletions.
53 changes: 41 additions & 12 deletions packages/google-cloud-container/nox.py
Expand Up @@ -13,40 +13,69 @@
# limitations under the License.

from __future__ import absolute_import

import os

import nox


LOCAL_DEPS = (
os.path.join('..', 'api_core'),
)


@nox.session
@nox.parametrize('python_version', ['2.7', '3.4', '3.5', '3.6'])
def unit_tests(session, python_version):
"""Run the unit test suite."""
def default(session):
"""Default unit test session.
This is intended to be run **without** an interpreter set, so
that the current ``python`` (on the ``PATH``) or the version of
Python corresponding to the ``nox`` binary on the ``PATH`` can
run the tests.
"""
# Install all test dependencies, then install this package in-place.
session.install('mock', 'pytest', 'pytest-cov', *LOCAL_DEPS)
session.install('-e', '.')

session.interpreter = 'python{}'.format(python_version)
# Run py.test against the unit tests.
session.run(
'py.test',
'--quiet',
'--cov=google.cloud.container',
'--cov=google.cloud.container_v1',
'--cov=tests.unit',
'--cov-append',
'--cov-config=.coveragerc',
'--cov-report=',
os.path.join('tests', 'unit'),
*session.posargs
)

session.virtualenv_dirname = 'unit-' + python_version

session.install('pytest')
session.install('-e', '.')
@nox.session
@nox.parametrize('py', ['2.7', '3.4', '3.5', '3.6'])
def unit(session, py):
"""Run the unit test suite."""

session.run('py.test', '--quiet', os.path.join('tests', 'unit'))
session.interpreter = 'python{}'.format(py)
session.virtualenv_dirname = 'unit-' + py
default(session)


@nox.session
@nox.parametrize('python_version', ['2.7', '3.6'])
def system_tests(session, python_version):
@nox.parametrize('py', ['2.7', '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(python_version)
session.interpreter = 'python{}'.format(py)

# Set the virtualenv dirname.
session.virtualenv_dirname = 'sys-' + python_version
session.virtualenv_dirname = 'sys-' + py

# Install all test dependencies, then install this package into the
# virtualenv's dist-packages.
Expand Down

0 comments on commit d33c8a9

Please sign in to comment.