summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorJason DeTiberus <jdetiber@redhat.com>2017-03-06 14:30:01 -0500
committerJason DeTiberus <jdetiber@redhat.com>2017-03-06 14:32:45 -0500
commit3151e4f8c4262e8f63da69158243d94a77949893 (patch)
treedd92ceb7997d994d74320aa5f762bd52fa132f8e /CONTRIBUTING.md
parentfda3b434b73d5df3c9453dbd772b182b09a0f7e5 (diff)
downloadopenshift-3151e4f8c4262e8f63da69158243d94a77949893.tar.gz
openshift-3151e4f8c4262e8f63da69158243d94a77949893.tar.bz2
openshift-3151e4f8c4262e8f63da69158243d94a77949893.tar.xz
openshift-3151e4f8c4262e8f63da69158243d94a77949893.zip
Update docs for test consolidation and remove the Makefile
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md9
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