From 80de1fcddb6444deeaca8f529bdad715161ee1de Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 24 Jun 2018 21:57:03 +0300 Subject: [PATCH] Tests: Rename test.py -> utils.py Starting to prepare for pytest - rename utilities module; this is required because pytest collects tests from files test*.py. --- tests/test1.py | 2 +- tests/test2.py | 2 +- tests/test3.py | 2 +- tests/{test.py => utils.py} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename tests/{test.py => utils.py} (100%) diff --git a/tests/test1.py b/tests/test1.py index 9b171d3..eee487c 100644 --- a/tests/test1.py +++ b/tests/test1.py @@ -1,5 +1,5 @@ import os, time -from test import * +from utils import * from fsmonitor import * w = test.add_dir_watch(tempdir) diff --git a/tests/test2.py b/tests/test2.py index 302bde5..75da29f 100644 --- a/tests/test2.py +++ b/tests/test2.py @@ -1,5 +1,5 @@ import os, time -from test import * +from utils import * from fsmonitor import * w = test.add_dir_watch(tempdir) diff --git a/tests/test3.py b/tests/test3.py index 3ff72b6..78e31b6 100644 --- a/tests/test3.py +++ b/tests/test3.py @@ -1,5 +1,5 @@ import os, time, errno -from test import * +from utils import * from fsmonitor import * try: diff --git a/tests/test.py b/tests/utils.py similarity index 100% rename from tests/test.py rename to tests/utils.py