mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00

* 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.
7 lines
144 B
Python
7 lines
144 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from .task import Task
|
|
from .taskd import Taskd
|
|
from .testing import TestCase, ServerTestCase
|
|
|
|
# vim: ai sts=4 et sw=4
|