Re: [openstack-dev] [nova][testing] How to run a subset of py34 unit tests

2016-01-26 Thread melanie witt
On Jan 25, 2016, at 17:57, melanie witt wrote: > Thanks!! That's indeed the same problem and removing the '$' from the > exclude_regex worked for me. (ostestr --blacklist_file tests-py3.txt --regex > "nova.tests.unit.network" ran all non-blacklisted network tests) Argh, I

Re: [openstack-dev] [nova][testing] How to run a subset of py34 unit tests

2016-01-25 Thread melanie witt
On Jan 22, 2016, at 19:14, Matthew Treinish wrote: > Although, now that I look at the list it definitely looks like this one, > which I had forgotten about: > > https://bugs.launchpad.net/os-testr/+bug/1506215 > > It sounds like that bug proposes a direction so if you

Re: [openstack-dev] [nova][testing] How to run a subset of py34 unit tests

2016-01-22 Thread Matthew Treinish
On Fri, Jan 22, 2016 at 06:46:48PM -0800, melanie witt wrote: > Hi everyone, > > I noticed because of the way we run the py34 tests in tox.ini, I'm not able > to specify a filter regex the way I normally do as a positional arg, for > example: 'tox -epy34 nova.tests.unit.network' doesn't filter

[openstack-dev] [nova][testing] How to run a subset of py34 unit tests

2016-01-22 Thread melanie witt
Hi everyone, I noticed because of the way we run the py34 tests in tox.ini, I'm not able to specify a filter regex the way I normally do as a positional arg, for example: 'tox -epy34 nova.tests.unit.network' doesn't filter and it runs everything. ('tox -epy27 nova.tests.unit.network' will only

Re: [openstack-dev] [nova][testing] How to run a subset of py34 unit tests

2016-01-22 Thread Davanum Srinivas
Melanie, The following should work as well source .tox/py34/bin/activate ostestr --regex *.network.* Thanks, Dims On Fri, Jan 22, 2016 at 9:46 PM, melanie witt wrote: > Hi everyone, > > I noticed because of the way we run the py34 tests in tox.ini, I'm not able > to