diff --git a/.travis.yml b/.travis.yml index b7a0095..4cbcc83 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ script: - docker ps - sleep 5 - curl -I 127.0.0.1:80 - - python tests.py + - python .travis/tests.py notifications: slack: ngineered:EIKJFrzibOe0TwUhLXNe8Q2Q diff --git a/tests.py b/.travis/tests.py similarity index 86% rename from tests.py rename to .travis/tests.py index 3e4fee0..8f494e7 100644 --- a/tests.py +++ b/.travis/tests.py @@ -5,7 +5,7 @@ import sys def run_functional_tests(): ''' Execute Functional Tests ''' - tests = unittest.TestLoader().discover('tests/functional') + tests = unittest.TestLoader().discover('.travis/tests/functional') result = unittest.TextTestRunner(verbosity=2).run(tests) return result.wasSuccessful() diff --git a/tests/functional/test_content.py b/.travis/tests/functional/test_content.py similarity index 100% rename from tests/functional/test_content.py rename to .travis/tests/functional/test_content.py