From 0a7d3c2e5ee8af9ea1999aae1df2deb3437c877d Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Wed, 1 Nov 2017 14:07:42 -0700 Subject: [PATCH] #4319 update docs and config files --- CONTRIBUTING.rst | 10 +++++----- appveyor.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 94c2e657f11b..0c7772242674 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -102,8 +102,8 @@ We use `nox`_ to instrument our tests. - To test your changes, run unit tests with ``nox``:: - $ nox -f datastore/nox.py -s "unit_tests(python_version='2.7')" - $ nox -f datastore/nox.py -s "unit_tests(python_version='3.4')" + $ nox -f datastore/nox.py -s "unit(py='2.7')" + $ nox -f datastore/nox.py -s "unit(py='3.4')" $ ... .. note:: @@ -118,7 +118,7 @@ We use `nox`_ to instrument our tests. $ export GIT_ROOT=$(pwd) $ cd ${GIT_ROOT}/datastore/ - $ nox -s "unit_tests(python_version='3.6')" + $ nox -s "unit(py='3.6')" .. nox: https://pypi.org/project/nox-automation/ @@ -184,8 +184,8 @@ Running System Tests - To run system tests for a given package, you can execute:: - $ nox -f datastore/nox.py -s "system_tests(python_version='3.6')" - $ nox -f datastore/nox.py -s "system_tests(python_version='2.7')" + $ nox -f datastore/nox.py -s "system(py='3.6')" + $ nox -f datastore/nox.py -s "system(py='2.7')" .. note:: diff --git a/appveyor.yml b/appveyor.yml index b200c9e1df03..dc9e2277aab4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,10 +14,10 @@ environment: # iterations. - PYTHON: "C:\\Python27" - NOX_ENV: "unit_tests(python_version='2.7')" + NOX_ENV: "unit(py='2.7')" - PYTHON: "C:\\Python35-x64" - NOX_ENV: "unit_tests(python_version='3.5')" + NOX_ENV: "unit(py='3.5')" install: - cmd: echo "Filesystem root:"