From b2ac4f08a571d56f056a103c05d200ed984fa0c7 Mon Sep 17 00:00:00 2001 From: Timo Furrer Date: Sun, 28 May 2017 00:33:41 +0200 Subject: [PATCH] Move tests into tests directory --- .travis.yml | 2 +- test_maya.py => tests/test_maya.py | 0 test_maya_interval.py => tests/test_maya_interval.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename test_maya.py => tests/test_maya.py (100%) rename test_maya_interval.py => tests/test_maya_interval.py (100%) diff --git a/.travis.yml b/.travis.yml index cc539ad..b45f1fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,4 +6,4 @@ python: # command to install dependencies install: pip install pipenv; pipenv lock; pipenv install --dev # command to run tests -script: pipenv run pytest +script: pipenv run pytest tests/ diff --git a/test_maya.py b/tests/test_maya.py similarity index 100% rename from test_maya.py rename to tests/test_maya.py diff --git a/test_maya_interval.py b/tests/test_maya_interval.py similarity index 100% rename from test_maya_interval.py rename to tests/test_maya_interval.py