Skip to content

Commit

Permalink
#4319 update docs and config files
Browse files Browse the repository at this point in the history
  • Loading branch information
chemelnucfin committed Nov 1, 2017
1 parent 64a39e0 commit 0a7d3c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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::
Expand All @@ -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/
Expand Down Expand Up @@ -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::

Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:"
Expand Down

0 comments on commit 0a7d3c2

Please sign in to comment.