summaryrefslogtreecommitdiff
path: root/run_tests.sh
Commit message (Collapse)AuthorAgeFilesLines
* Modify run_tests.sh to just run toxSteve Martinelli2013-08-021-153/+22
| | | | | | should fix bug 1203384 Change-Id: Ib37b05067624d7ad1a4516f161514565b088bf6b
* Make entry point strings readableDean Troyer2013-03-211-1/+1
| | | | | | | | | | | PEP8 E126 wants continued strings to line up vertically, totally destroying the readability and visual indication of the beginning of a string in a list * Ignore PEP8 E126 in order to indent the entry point strings in a readable manner. * Sort the enrty point command strings by object then verb. * Bring other ignores from run_tests.sh to tox.ini Change-Id: I2593de7d6c058322101bc68636317cdba29fe664
* Upgraded to PEP8 1.3.3 to stay aligned with Nova, etc.Josh Kearney2013-01-311-1/+1
| | | | | | | | Made all the necessary changes to pass new PEP8 standards. Also cleaned up docstrings to conform to the HACKING stanards. Change-Id: Ib8df3030da7a7885655689ab5da0717748c9edbe
* Clean up test_shell so that the tests are captured though the test framework.Josh Kearney2013-01-301-2/+2
| | | | | | Also makes a small modification to gitignore. Change-Id: Iefbfbcfd35270b06ed65edb34708fa9b4d5bf563
* Remove old/unsupported options from run_tests help message.Josh Kearney2013-01-291-3/+1
| | | | Change-Id: Ie0d796ecbd3c98b496a225c2a2c128db94a1831e
* Fix test runner run_tests.sh is brokenIlya Persky2013-01-251-1/+1
| | | | | | | | | run_tests.sh contains incorrect variable assignment at line 80 which makes script to fail when trying to run tests. Fixes: bug #1105000 Change-Id: Ib29c50f28d8b7e09935cd4136e709e0e0141ad2a
* Migrate from nose to testr.Josh Kearney2013-01-221-15/+45
| | | | | | | | Run tests with testr for parallel execution. Part of blueprint grizzly-testtools. Change-Id: I560592186f2f440049a451a32e58067262ab62d0
* Clean up test environment and remove unused imports.Josh Kearney2013-01-221-22/+125
| | | | | | First round of adding more complete unit test coverage. Change-Id: Ic1979c499ca6fcb784892a95954a3527539c4e53
* Add openstack-common and test infrastructure.James E. Blair2012-04-281-125/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix pep8 errors (project is pep8 clean now). Update setup.py to use openstack-common style dependencies. Remove the unused novaclient dependency. Change the keystoneclient dependency to a git URL. Add test-requires, and move some pip-requires dependencies into it. Remove the test_utils unit test which wasn't testing anything that is actually present in the project. Add the test_authors unit test. Use tox for running tests locally. See: http://wiki.openstack.org/ProjectTestingInterface Tox can manage virtualenvs, and is currently doing so for running tests in Jenkins. It's just as, or more, useful for running tests locally, so this starts the migration from the run_tests system to tox. The goal is to reduce duplicate testing infrastructure, and get what's running locally on developer workstations as close to what is run by Jenkins as possible. Run_tests.sh will now call tox to facilitate the transition for developers used to typing "run_tests.sh". Developers will need tox installed on their workstations. It can be installed from PyPI with "pip install tox". run_tests.sh outputs those instructions if tox is not present. New facilities are available using tox directly, including: tox -e py26 # run tests under python 2.6 tox -e py27 # run tests under python 2.7 tox -e pep8 # run pep8 tests tox # run all of the above tox -e venv foo # run the command "foo" inside a virtualenv The OpenStack nose plugin is used when running tox from the command line, so the enhanced, colorized output is visible to developers running the test suite locally. However, when Jenkins runs tox, xunit output will be used instead, which is natively understood by jenkins and much more readable in that context. Change-Id: Ib627be3b37b5a09d3795006d412ddcc35f8c6c1e
* First commitDean Troyer2012-04-181-0/+152