From e5ccb9f35511813ba4514b9654bcff346ac54b51 Mon Sep 17 00:00:00 2001 From: Sandeep Murthy Date: Sat, 17 Feb 2018 19:03:01 +0000 Subject: [PATCH] Renaming some test modules: `authtests.py` -> `test_auth.py`, `authtests2.py` -> `test_auth2.py`, `client_credential_tests.py` -> `test_client_credentials.py` + update `tox.ini` --- tests/{authtests.py => test_auth.py} | 0 tests/{authtests2.py => test_auth2.py} | 0 ...{client_credentials_tests.py => test_client_credentials.py} | 0 tox.ini | 3 ++- 4 files changed, 2 insertions(+), 1 deletion(-) rename tests/{authtests.py => test_auth.py} (100%) rename tests/{authtests2.py => test_auth2.py} (100%) rename tests/{client_credentials_tests.py => test_client_credentials.py} (100%) diff --git a/tests/authtests.py b/tests/test_auth.py similarity index 100% rename from tests/authtests.py rename to tests/test_auth.py diff --git a/tests/authtests2.py b/tests/test_auth2.py similarity index 100% rename from tests/authtests2.py rename to tests/test_auth2.py diff --git a/tests/client_credentials_tests.py b/tests/test_client_credentials.py similarity index 100% rename from tests/client_credentials_tests.py rename to tests/test_client_credentials.py diff --git a/tox.ini b/tox.ini index e3af7ee..dcbdb72 100644 --- a/tox.ini +++ b/tox.ini @@ -3,6 +3,7 @@ envlist = py27,py34 [testenv] deps= requests + simplejson six py27: mock -commands=python -m unittest discover tests +commands=python -m unittest discover -v tests