Given this configuration::
[DEFAULT] test_command=trial --reporter=subunit $LISTOPT $IDLIST test_id_list_default=twisted
`testr run` does:: running=trial --reporter=subunit twisted twisted.trial
And `testr run twisted.trial` does:: running=trial --reporter=subunit twisted twisted.trial
I would have expected it to do this instead:: running=trial --reporter=subunit twisted.trial
I want to be able to specify ids when calling `testr run` so I can restrict the range of tests run, rather than expand them.
Given this configuration::
[DEFAULT] command= trial --reporter=subunit $LISTOPT $IDLIST id_list_ default= twisted
test_
test_
`testr run` does::
running=trial --reporter=subunit twisted twisted.trial
And `testr run twisted.trial` does::
running=trial --reporter=subunit twisted twisted.trial
I would have expected it to do this instead::
running=trial --reporter=subunit twisted.trial
I want to be able to specify ids when calling `testr run` so I can restrict the range of tests run, rather than expand them.