We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0a3069 commit bee046bCopy full SHA for bee046b
.travis.yml
@@ -16,7 +16,7 @@ script:
16
- docker ps
17
- sleep 5
18
- curl -I 127.0.0.1:80
19
- - python tests.py
+ - python .travis/tests.py
20
21
notifications:
22
slack: ngineered:EIKJFrzibOe0TwUhLXNe8Q2Q
tests.py .travis/tests.pytests.py renamed to .travis/tests.py
@@ -5,7 +5,7 @@
5
6
def run_functional_tests():
7
''' Execute Functional Tests '''
8
- tests = unittest.TestLoader().discover('tests/functional')
+ tests = unittest.TestLoader().discover('.travis/tests/functional')
9
result = unittest.TextTestRunner(verbosity=2).run(tests)
10
return result.wasSuccessful()
11
tests/functional/test_content.py .travis/tests/functional/test_content.pytests/functional/test_content.py renamed to .travis/tests/functional/test_content.py
0 commit comments