On Wed, Oct 30, 2013 at 7:02 PM, Vijay B <os.v...@gmail.com> wrote:

> Hi,
>
> How can we skip certain unit tests when running run_tests.sh? I'm looking
> at the Openstack unit test page
>

If it's not too late you may skip tests with testr/run_tests.sh. List all
tests using testr & store in a file, exclude the tests and feed the file
that has tests to execute to run_tests.sh script. Something in these lines,
assuming you use venv ...

. .venv/bin/activate && testr list-tests | egrep -v
'exclude_test1|exclude_test2' > execute-tests && deactivate
./run_tests.sh -- --load-list=execute-tests

-- 
Regards,
Bhuvan Arumugam
www.livecipher.com
_______________________________________________
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

Reply via email to