我正在尝试为我的项目设置Travis CI https://github.com/openmodal/lvm_read
<。> .travis文件是:language: python
python:
- "3.5"
install: "pip install -r requirements.txt"
script:
- pytest# py.test also does not work
我跟随Travis CI tutorila,但我不知道我做错了什么。
我收到以下错误:
/home/travis/build.sh:line 57:pytest#:command not found
我希望你能帮助我;如果您需要详细信息,请查看上面的回购。
PS:pytest在我当地的virtualenv中工作得很好
答案 0 :(得分:2)
似乎是在A = range(0,101)
B = [(x-10)/3 for x in A]
上将#
解释为命令的一部分。
尝试添加空格或删除评论。