We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0739f4b commit 29290e9Copy full SHA for 29290e9
.travis.yml
@@ -23,7 +23,7 @@ matrix:
23
- pip install flake8 coverage
24
script:
25
- flake8
26
- - BOKEH_BROWSER=none catchsegv coverage run setup.py test
+ - BOKEH_BROWSER=none catchsegv coverage run -m backtesting.test
27
after_success:
28
- bash <(curl -s https://codecov.io/bash)
29
@@ -45,4 +45,4 @@ install:
45
- pip install -U --pre .[test]
46
47
48
- - BOKEH_BROWSER=none time catchsegv python setup.py test
+ - BOKEH_BROWSER=none time catchsegv python -m backtesting.test
backtesting/test/__main__.py
@@ -3,4 +3,4 @@
3
suite = unittest.defaultTestLoader.discover('backtesting.test',
4
pattern='_test*.py')
5
if __name__ == '__main__':
6
- unittest.TextTestRunner().run(suite)
+ unittest.TextTestRunner(verbosity=2).run(suite)
0 commit comments