I currently have a project with the following .travis.yml file:
language: python install: "pip install tox" script: "tox"
Locally, tox correctly executes and runs 35 tests, but 0 tests are run on Travis CI.
More details: https://travis-ci.org/neverendingqs/pyiterable/builds/78954867
I also tried other ways, including:
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5.0b3" - "3.5-dev" - "nightly" # also fails with just `nosetest` and no `install` step install: "pip install coverage unittest2" script: "nosetests --with-coverage --cover-package=pyiterable"
They also could not find any tests .
My Like This project structure:
- ... - <module> - tests (for the module) - ...
Are the project / folders structured incorrectly?
source share