- python
Travis-CI and Python with Pytest
- Simply adding script: pytest will not work.
- pytest will fail with exit code 5 if it cannot find any test to run.
examples/python-pytest/.travis.yml
language: python script: pytest
examples/python-pytest/test_python.py
def test_anything(): pass