Comment 0 for bug 1027042

Revision history for this message
Jonathan Lange (jml) wrote : test_id_list_default used even when id provided

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.