gpt4 book ai didi

python - 为什么 travis CI 中的服务器机器无法找到我的需求文件?

转载 作者:行者123 更新时间:2023-12-01 00:19:49 25 4
gpt4 key购买 nike

我的目录树如下所示

├── antimony_combinations
│   ├── antimony_combinations.py
│   ├── __init__.py
├── LICENCE
├── README.md
├── requirements.txt
├── setup.py
└── tests
└── tests.py

我的 .travis.yml 看起来像这样:

language: python
before_install: # get some dependency software. This works as expected in another package.
- wget https://github.com/copasi/COPASI/releases/download/Build-207/COPASI-4.25.207-Linux-64bit.tar.gz -O /tmp/copasi.tar.gz
- tar -xzvf /tmp/copasi.tar.gz
- export PATH=$PATH:$PWD/COPASI-4.25.207-Linux-64bit/bin/
python:
- "3.6"
- "3.7"
- "3.8"
install:
- pip install .
- pip install -r $PWD/requirements.txt # Also tried just using `requirements.txt` here
- pip install nose
script:
- nosetests
after_success:
- coveralls

但我收到以下错误:

enter image description here

最佳答案

您似乎没有在 GitHub 上提交您的需求文件。我本来希望在 https://github.com/CiaranWelsh/AntimonyCombinations/tree/58af0a810aed080e6f397d40d009b1b8d45df833 中看到它!

关于python - 为什么 travis CI 中的服务器机器无法找到我的需求文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59030893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com