summaryrefslogtreecommitdiff
path: root/test/test_pytest.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_pytest.py')
-rw-r--r--test/test_pytest.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/test/test_pytest.py b/test/test_pytest.py
index 02a34d4..fb95c23 100644
--- a/test/test_pytest.py
+++ b/test/test_pytest.py
@@ -15,9 +15,17 @@
#
# You should have received a copy of the GNU Lesser General Public License along
# with logilab-common. If not, see <http://www.gnu.org/licenses/>.
+import sys
+
from os.path import join
from logilab.common.testlib import TestCase, unittest_main
-from logilab.common.pytest import *
+from logilab.common.pytest import (
+ this_is_a_testdir,
+ this_is_a_testfile,
+ replace_trace,
+ pause_trace,
+ nocoverage,
+)
class ModuleFunctionTC(TestCase):