Skip to content

Commit

Permalink
nox unittest updates
Browse files Browse the repository at this point in the history
  • Loading branch information
chemelnucfin committed Dec 21, 2017
1 parent 6275537 commit f2c9bcc
Show file tree
Hide file tree
Showing 3 changed files with 167 additions and 32 deletions.
61 changes: 53 additions & 8 deletions bigquery_datatransfer/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,54 @@
# limitations under the License.

from __future__ import absolute_import

import os

import nox


LOCAL_DEPS = (
os.path.join('..', 'api_core'),
os.path.join('..', '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 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.bigquery_datatransfer',
'--cov=google.cloud.bigquery_datatransfer_v1',
'--cov=tests.unit',
'--cov-append',
'--cov-config=.coveragerc',
'--cov-report=',
os.path.join('tests', 'unit', 'gapic', 'v1'),
*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
Expand Down Expand Up @@ -65,3 +95,18 @@ def system(session, py):

# Run py.test against the system tests.
session.run('py.test', '--quiet', 'tests/system/')


@nox.session
def cover(session):
"""Run the final coverage report.
This outputs the coverage report aggregating coverage from the unit
test runs (not system test runs), and then erases coverage data.
"""
session.interpreter = 'python3.6'
session.install('coverage', 'pytest-cov')
session.run('coverage', 'report', '--show-missing', '--fail-under=70')
# uncomment when coverage is met
# session.run('coverage', 'report', '--show-missing', '--fail-under=100')
session.run('coverage', 'erase')
69 changes: 57 additions & 12 deletions container/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,40 +13,70 @@
# limitations under the License.

from __future__ import absolute_import

import os

import nox


LOCAL_DEPS = (
os.path.join('..', 'api_core'),
os.path.join('..', '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 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 All @@ -65,3 +95,18 @@ def lint_setup_py(session):
session.install('docutils', 'pygments')
session.run('python', 'setup.py', 'check', '--restructuredtext',
'--strict')


@nox.session
def cover(session):
"""Run the final coverage report.
This outputs the coverage report aggregating coverage from the unit
test runs (not system test runs), and then erases coverage data.
"""
session.interpreter = 'python3.6'
session.install('coverage', 'pytest-cov')
session.run('coverage', 'report', '--show-missing', '--fail-under=60')
# uncomment when coverage is met
# session.run('coverage', 'report', '--show-missing', '--fail-under=100')
session.run('coverage', 'erase')
69 changes: 57 additions & 12 deletions dataproc/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,37 +13,67 @@
# limitations under the License.

from __future__ import absolute_import

import os

import nox


LOCAL_DEPS = (
os.path.join('..', 'api_core'),
os.path.join('..', '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 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.dataproc',
'--cov=google.cloud.dataproc_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."""

if not os.environ.get('GOOGLE_APPLICATION_CREDENTIALS', ''):
session.skip('Credentials must be set via environment variable.')

session.interpreter = 'python{}'.format(python_version)
session.interpreter = 'python{}'.format(py)

session.virtualenv_dirname = 'sys-' + python_version
session.virtualenv_dirname = 'sys-' + py

session.install('pytest')
session.install('-e', '.')
Expand All @@ -59,3 +89,18 @@ def lint_setup_py(session):
session.install('docutils', 'pygments')
session.run('python', 'setup.py', 'check', '--restructuredtext',
'--strict')


@nox.session
def cover(session):
"""Run the final coverage report.
This outputs the coverage report aggregating coverage from the unit
test runs (not system test runs), and then erases coverage data.
"""
session.interpreter = 'python3.6'
session.install('coverage', 'pytest-cov')
session.run('coverage', 'report', '--show-missing', '--fail-under=80')
# uncomment when coverage is met
# session.run('coverage', 'report', '--show-missing', '--fail-under=100')
session.run('coverage', 'erase')

0 comments on commit f2c9bcc

Please sign in to comment.