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 /utils/README.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 'utils/README.md')
-rw-r--r-- | utils/README.md | 61 |
1 files changed, 3 insertions, 58 deletions
diff --git a/utils/README.md b/utils/README.md index 7aa045ae4..79ea3fa9f 100644 --- a/utils/README.md +++ b/utils/README.md @@ -1,69 +1,14 @@ # Running Tests -Run the command: - - make ci - -to run tests and linting tools. - -Underneath the covers, 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 parallel. - -``` -pip install tox detox -``` - -List the test environments available: - -``` -tox -l -``` - -Run all of the tests with: - -``` -tox -``` - -Run all of the tests in parallel with detox: - -``` -detox -``` - -Run a particular test environment: - -``` -tox -e py27-flake8 -``` - -Run a particular test environment in a clean virtualenv: - -``` -tox -r -e py35-pylint -``` - -If you want to enter the virtualenv created by tox to do additional -testing/debugging: - -``` -source .tox/py27-flake8/bin/activate -``` - -You will get errors if the log files already exist and can not be -written to by the current user (`/tmp/ansible.log` and -`/tmp/installer.txt`). *We're working on it.* - +All tests can be run by running `tox`. See [running tests](..//CONTRIBUTING.md#running-tests) for more information. # Running From Source You will need to setup a **virtualenv** to run from source: $ virtualenv oo-install - $ source ./oo-install/bin/activate - $ virtualenv --relocatable ./oo-install/ - $ python setup.py install + $ source oo-install/bin/activate + $ python setup.py develop The virtualenv `bin` directory should now be at the start of your `$PATH`, and `oo-install` is ready to use from your shell. |