Unittest - Add mechanism to skip task and taskd tests

* When testing multiple clients vs server versions, repeating client
tests is unnecessary. By setting the env variables TASKW_SKIP and
TASKD_SKIP it will now be possible to skip all task (client only) and
taskd (client + server) tests, respectively.
This commit is contained in:
Renato Alves 2014-07-18 13:33:51 +01:00
parent 72e8a73ae0
commit 2a198d59fe
4 changed files with 25 additions and 5 deletions

View file

@ -2,6 +2,6 @@
from .task import Task
from .taskd import Taskd
from .testing import TestCase
from .testing import TestCase, ServerTestCase
# vim: ai sts=4 et sw=4