From 9a927cc3ac74d963a7677dca2e6b79ffd9c34ef8 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Mon, 24 Dec 2018 12:39:55 -0800 Subject: [PATCH] Move tests to a directory --- .circleci/config.yml | 2 +- test_simpervisor.py => tests/test_simpervisor.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename test_simpervisor.py => tests/test_simpervisor.py (100%) diff --git a/.circleci/config.yml b/.circleci/config.yml index c588624..8879788 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,7 +30,7 @@ jobs: name: run tests command: | . venv/bin/activate - py.test --log-cli-level DEBUG --cov=simpervisor test_simpervisor.py + py.test --log-cli-level DEBUG --cov=simpervisor tests/ - run: name: upload code coverage stats diff --git a/test_simpervisor.py b/tests/test_simpervisor.py similarity index 100% rename from test_simpervisor.py rename to tests/test_simpervisor.py