diff --git a/tests/utilities.py b/tests/utilities.py deleted file mode 100644 index 17eee6d..0000000 --- a/tests/utilities.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -Assorted utilities useful for the tests. -""" - -import os -import contextlib - -try: - import urllib.request as urllib_request # for python 3 -except ImportError: - import urllib2 as urllib_request # for python 2 - -import pytest -import glob - -from .get_remote_data import get_datafile - - -def get_test_file_dir(): - """ - returns the test file dir path - """ - test_file_dir = os.path.join(os.path.dirname(__file__), 'test_data') - return test_file_dir \ No newline at end of file