diff options
author | Jason DeTiberus <detiber@gmail.com> | 2017-03-06 14:44:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-06 14:44:27 -0500 |
commit | 4d231afcdcd261d6f7d498fa7ad5b0dcf6bc60ec (patch) | |
tree | d7d1e8696766849be3864a96b2fa8fd0d4d9c7be /CONTRIBUTING.md | |
parent | a56fd2d8383b60e95aba7336006ac0ff718c179c (diff) | |
parent | 3151e4f8c4262e8f63da69158243d94a77949893 (diff) | |
download | openshift-4d231afcdcd261d6f7d498fa7ad5b0dcf6bc60ec.tar.gz openshift-4d231afcdcd261d6f7d498fa7ad5b0dcf6bc60ec.tar.bz2 openshift-4d231afcdcd261d6f7d498fa7ad5b0dcf6bc60ec.tar.xz openshift-4d231afcdcd261d6f7d498fa7ad5b0dcf6bc60ec.zip |
Merge pull request #3569 from detiber/consolidateTox
Consolidate root/utils tests
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 502ef6aa5..12f3efc09 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -72,9 +72,6 @@ See the [RPM build instructions](BUILD.md). ## Running tests -This section covers how to run tests for the root of this repo, running tests -for the oo-install wrapper is described in [utils/README.md](utils/README.md). - We use [tox](http://readthedocs.org/docs/tox/) to manage virtualenvs and run tests. Alternatively, tests can be run using [detox](https://pypi.python.org/pypi/detox/) which allows for running tests in @@ -120,19 +117,19 @@ detox Running a particular test environment (python 2.7 flake8 tests in this case): ``` -tox -e py27-ansible22-flake8 +tox -e py27-flake8 ``` Running a particular test environment in a clean virtualenv (python 3.5 pylint tests in this case): ``` -tox -r -e py35-ansible22-pylint +tox -r -e py35-pylint ``` If you want to enter the virtualenv created by tox to do additional testing/debugging (py27-flake8 env in this case): ``` -source .tox/py27-ansible22-flake8/bin/activate +source .tox/py27-flake8/bin/activate ``` ## Submitting contributions |