From cff1b829cd43e53b6ca19820362c00533d147864 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Tue, 23 Aug 2016 12:52:14 -0700 Subject: [PATCH] Moves funtests -> t/integration --- setup.cfg | 2 +- {funtests => t/integration}/__init__.py | 0 {funtests => t/integration}/setup.cfg | 0 {funtests => t/integration}/setup.py | 0 {funtests => t/integration}/tests/__init__.py | 0 {funtests => t/integration}/tests/test_SLMQ.py | 0 {funtests => t/integration}/tests/test_SQS.py | 0 {funtests => t/integration}/tests/test_amqp.py | 0 {funtests => t/integration}/tests/test_librabbitmq.py | 0 {funtests => t/integration}/tests/test_mongodb.py | 0 {funtests => t/integration}/tests/test_pyamqp.py | 0 {funtests => t/integration}/tests/test_qpid.py | 0 {funtests => t/integration}/tests/test_redis.py | 0 {funtests => t/integration}/tests/test_zookeeper.py | 0 {funtests => t/integration}/transport.py | 0 t/{ => unit}/conftest.py | 0 16 files changed, 1 insertion(+), 1 deletion(-) rename {funtests => t/integration}/__init__.py (100%) rename {funtests => t/integration}/setup.cfg (100%) rename {funtests => t/integration}/setup.py (100%) rename {funtests => t/integration}/tests/__init__.py (100%) rename {funtests => t/integration}/tests/test_SLMQ.py (100%) rename {funtests => t/integration}/tests/test_SQS.py (100%) rename {funtests => t/integration}/tests/test_amqp.py (100%) rename {funtests => t/integration}/tests/test_librabbitmq.py (100%) rename {funtests => t/integration}/tests/test_mongodb.py (100%) rename {funtests => t/integration}/tests/test_pyamqp.py (100%) rename {funtests => t/integration}/tests/test_qpid.py (100%) rename {funtests => t/integration}/tests/test_redis.py (100%) rename {funtests => t/integration}/tests/test_zookeeper.py (100%) rename {funtests => t/integration}/transport.py (100%) rename t/{ => unit}/conftest.py (100%) diff --git a/setup.cfg b/setup.cfg index de74a8f5..02321d2f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [tool:pytest] -testpaths = t/ +testpaths = t/unit/ python_classes = test_* [build_sphinx] diff --git a/funtests/__init__.py b/t/integration/__init__.py similarity index 100% rename from funtests/__init__.py rename to t/integration/__init__.py diff --git a/funtests/setup.cfg b/t/integration/setup.cfg similarity index 100% rename from funtests/setup.cfg rename to t/integration/setup.cfg diff --git a/funtests/setup.py b/t/integration/setup.py similarity index 100% rename from funtests/setup.py rename to t/integration/setup.py diff --git a/funtests/tests/__init__.py b/t/integration/tests/__init__.py similarity index 100% rename from funtests/tests/__init__.py rename to t/integration/tests/__init__.py diff --git a/funtests/tests/test_SLMQ.py b/t/integration/tests/test_SLMQ.py similarity index 100% rename from funtests/tests/test_SLMQ.py rename to t/integration/tests/test_SLMQ.py diff --git a/funtests/tests/test_SQS.py b/t/integration/tests/test_SQS.py similarity index 100% rename from funtests/tests/test_SQS.py rename to t/integration/tests/test_SQS.py diff --git a/funtests/tests/test_amqp.py b/t/integration/tests/test_amqp.py similarity index 100% rename from funtests/tests/test_amqp.py rename to t/integration/tests/test_amqp.py diff --git a/funtests/tests/test_librabbitmq.py b/t/integration/tests/test_librabbitmq.py similarity index 100% rename from funtests/tests/test_librabbitmq.py rename to t/integration/tests/test_librabbitmq.py diff --git a/funtests/tests/test_mongodb.py b/t/integration/tests/test_mongodb.py similarity index 100% rename from funtests/tests/test_mongodb.py rename to t/integration/tests/test_mongodb.py diff --git a/funtests/tests/test_pyamqp.py b/t/integration/tests/test_pyamqp.py similarity index 100% rename from funtests/tests/test_pyamqp.py rename to t/integration/tests/test_pyamqp.py diff --git a/funtests/tests/test_qpid.py b/t/integration/tests/test_qpid.py similarity index 100% rename from funtests/tests/test_qpid.py rename to t/integration/tests/test_qpid.py diff --git a/funtests/tests/test_redis.py b/t/integration/tests/test_redis.py similarity index 100% rename from funtests/tests/test_redis.py rename to t/integration/tests/test_redis.py diff --git a/funtests/tests/test_zookeeper.py b/t/integration/tests/test_zookeeper.py similarity index 100% rename from funtests/tests/test_zookeeper.py rename to t/integration/tests/test_zookeeper.py diff --git a/funtests/transport.py b/t/integration/transport.py similarity index 100% rename from funtests/transport.py rename to t/integration/transport.py diff --git a/t/conftest.py b/t/unit/conftest.py similarity index 100% rename from t/conftest.py rename to t/unit/conftest.py