Author: Andreas Tille <tille@debian.org>
Last-Update: Wed, 11 Jul 2018 11:21:00 +0200
Description: For some strange reason without this patch the test ends up in
 .
 ImportError: No module named ruffus

--- a/ruffus/test/test_pool_manager.py
+++ b/ruffus/test/test_pool_manager.py
@@ -1,3 +1,11 @@
+#!/usr/bin/env python
+import os
+import sys
+
+## add grandparent to search path for testing
+grandparent_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))
+sys.path.insert(0, grandparent_dir)
+
 import contextlib
 import random
 import unittest
