Skip to content

Commit f6e2411

Browse files
committed
Moved tests in influxdb package
1 parent 3515679 commit f6e2411

18 files changed

+8
-9
lines changed
File renamed without changes.
File renamed without changes.

tests/influxdb/dataframe_client_test.py renamed to influxdb/tests/dataframe_client_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import requests_mock
1010
from nose.tools import raises
1111
from datetime import timedelta
12-
from tests import skipIfPYpy, using_pypy
12+
from influxdb.tests import skipIfPYpy, using_pypy
1313
import warnings
1414

1515
if not using_pypy:
File renamed without changes.
File renamed without changes.

tests/influxdb/influxdb08/dataframe_client_test.py renamed to influxdb/tests/influxdb08/dataframe_client_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import requests_mock
1010
from nose.tools import raises
1111
from datetime import timedelta
12-
from tests import skipIfPYpy, using_pypy
12+
from influxdb.tests import skipIfPYpy, using_pypy
1313
import copy
1414
import warnings
1515

File renamed without changes.
File renamed without changes.

tests/influxdb/server_tests/base.py renamed to influxdb/tests/server_tests/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import sys
44

5-
from tests import using_pypy
6-
from tests.influxdb.server_tests.influxdb_instance import InfluxDbInstance
5+
from influxdb.tests import using_pypy
6+
from influxdb.tests.server_tests.influxdb_instance import InfluxDbInstance
77

88
from influxdb.client import InfluxDBClient
99

tests/influxdb/server_tests/client_test_with_server.py renamed to influxdb/tests/server_tests/client_test_with_server.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
from influxdb import InfluxDBClient
2525
from influxdb.exceptions import InfluxDBClientError
2626

27-
from tests import skipIfPYpy, using_pypy, skipServerTests
28-
from tests.influxdb.server_tests.base import ManyTestCasesWithServerMixin
29-
from tests.influxdb.server_tests.base import SingleTestCaseWithServerMixin
27+
from influxdb.tests import skipIfPYpy, using_pypy, skipServerTests
28+
from influxdb.tests.server_tests.base import ManyTestCasesWithServerMixin
29+
from influxdb.tests.server_tests.base import SingleTestCaseWithServerMixin
3030

3131
if not using_pypy:
3232
import pandas as pd

tests/influxdb/server_tests/influxdb_instance.py renamed to influxdb/tests/server_tests/influxdb_instance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import unittest
1313
import sys
1414

15-
from tests.influxdb.misc import get_free_port, is_port_open
15+
from influxdb.tests.misc import get_free_port, is_port_open
1616

1717

1818
class InfluxDbInstance(object):

tests/influxdb/influxdb08/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)