15 lines
382 B
Bash
15 lines
382 B
Bash
# run specific tests:
|
|
# sudo tox -epy27 -- '(TestAffinity|TestDiversity)'
|
|
|
|
# isolate
|
|
# sudo tox -- --isolated
|
|
|
|
# run all tests until failure
|
|
# sudo tox -- --until-failure
|
|
|
|
# unparallel running (serial)
|
|
# sudo tox -epy27 -- '--concurrency=1'
|
|
|
|
# use commands = ostestr --slowest '{posargs}' in file tox.ini
|
|
# http://docs.openstack.org/developer/os-testr/ostestr.html#running-tests
|