我第一次尝试使用travis进行构建。我以为我的.travis.yml
很简单。
这是我的.travis.yml
language: python
python:
- "3.6"
- "3.7"
# command to install dependencies
install:
- pip install .
# command to run tests
script:
- pytest
构建似乎没有问题,但是令人惊讶的是,travis界面显示失败,并显示“未设置环境变量”:
(链接至travis版本): https://travis-ci.org/DataReply/persistable/builds/449064588
我无法从文档中了解信息,也无法在线找到有关发生这种情况的提示,因此,我不得不在这里询问。谢谢。
答案 0 :(得分:2)
单击构建作业以查看完整的控制台输出。您会注意到,构建失败是因为没有定义测试(在这种情况下,pytest以非零退出代码退出:The command "pytest" exited with 5.
)。