1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Jochen Sprickerhof <git@jochen.sprickerhof.de>
Date: Fri, 15 Jan 2021 09:08:05 +0100
Subject: Fix unit tests on non wsl non Travis systems
The test_custom_command was introduced in #63 with the TASK_VERSION for
Travis. As TASK_VERSION is not part of a default environment, the test
would still try to run `wsl` on other systems and fail.
---
tasklib/tests.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tasklib/tests.py b/tasklib/tests.py
index 8b93a86..fcd46de 100644
--- a/tasklib/tests.py
+++ b/tasklib/tests.py
@@ -72,7 +72,7 @@ class TaskWarriorTest(TasklibTest):
tw = self.get_taskwarrior(
task_command='wsl task',
# prevent `_get_version` from running as `wsl` may not exist
- version_override=os.getenv('TASK_VERSION'),
+ version_override=os.getenv('TASK_VERSION', 'v1.2.3'),
)
self.assertEqual(tw._get_task_command(), ['wsl', 'task'])
|