我目前有一个包含以下.travis.yml
文件的项目:
language: python
install: "pip install tox"
script: "tox"
在本地,tox
正确执行并运行 35 个测试,但在 Travis CI 上,它运行0 个测试。
更多细节:https ://travis-ci.org/neverendingqs/pyiterable/builds/78954867
我还尝试了其他方法,包括:
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"
他们也找不到任何测试。
我的项目结构是这样的:
- ...
- <module>
- tests (for the module)
- ...
项目/文件夹的结构是否不正确?