diff --git a/packages/google-cloud-vision/nox.py b/packages/google-cloud-vision/nox.py index f25539343f7d..2f6598787b5c 100644 --- a/packages/google-cloud-vision/nox.py +++ b/packages/google-cloud-vision/nox.py @@ -26,15 +26,15 @@ @nox.session -@nox.parametrize('python_version', ['2.7', '3.4', '3.5', '3.6']) -def unit_tests(session, python_version): +@nox.parametrize('py', ['2.7', '3.4', '3.5', '3.6']) +def unit(session, py): """Run the unit test suite.""" # Run unit tests against all supported versions of Python. - session.interpreter = 'python{}'.format(python_version) + session.interpreter = 'python{}'.format(py) # Set the virtualenv dirname. - session.virtualenv_dirname = 'unit-' + python_version + session.virtualenv_dirname = 'unit-' + py # Install all test dependencies, then install this package in-place. session.install('mock', 'pytest', 'pytest-cov', *LOCAL_DEPS) @@ -55,8 +55,8 @@ def unit_tests(session, python_version): @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. @@ -64,10 +64,10 @@ def system_tests(session, python_version): session.skip('Credentials must be set via environment variable.') # Run unit tests against all supported versions of Python. - 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 in-place. session.install('pytest', '../core/', '../storage/') @@ -84,8 +84,8 @@ def system_tests(session, python_version): @nox.session -@nox.parametrize('python_version', ['2.7', '3.6']) -def system_tests_manual_layer(session, python_version): +@nox.parametrize('py', ['2.7', '3.6']) +def system_manual_layer(session, py): """Run the system test suite for the old manual layer.""" # Sanity check: Only run system tests if the environment variable is set. @@ -93,7 +93,7 @@ def system_tests_manual_layer(session, python_version): session.skip('Credentials must be set via environment variable.') # Run unit tests against all supported versions of Python. - session.interpreter = 'python{}'.format(python_version) + session.interpreter = 'python{}'.format(py) # Install all test dependencies, then install this package in-place. session.install('pytest', '../core/', '../storage/')