Travis 找不到我的 travis.yml 文件
Travis can't find my travis.yml file
我的存储库的根目录中有 .travis.yml 文件,但 Travis-Ci 一直给我消息:
Could not find .travis.yml, using standard configuration.
我不知道这对我来说是否重要,但在我的 .travis.yml 文件中:
language: python
python:
- "2.7"
# command to install dependencies
install: "pip install -r requirements.txt"
script: nosetests
这是我的 travis link:https://travis-ci.org/vgSefa/pBlog
经过更多研究和尝试自行解决问题。
我推送了一些代码更改,travis 突然发现了我的 .travis.yml 文件。所以,哪里没有解决办法,你继续工作,travis fill 及时就好了。
我也给 travis 支持发了一封邮件,如果这真的是一个错误,我可能会修复这个问题。
我的存储库的根目录中有 .travis.yml 文件,但 Travis-Ci 一直给我消息:
Could not find .travis.yml, using standard configuration.
我不知道这对我来说是否重要,但在我的 .travis.yml 文件中:
language: python
python:
- "2.7"
# command to install dependencies
install: "pip install -r requirements.txt"
script: nosetests
这是我的 travis link:https://travis-ci.org/vgSefa/pBlog
经过更多研究和尝试自行解决问题。
我推送了一些代码更改,travis 突然发现了我的 .travis.yml 文件。所以,哪里没有解决办法,你继续工作,travis fill 及时就好了。
我也给 travis 支持发了一封邮件,如果这真的是一个错误,我可能会修复这个问题。