配置文件—— .travis.yml
时间: 2023-08-01 13:15:15 浏览: 235
travis-goodpractice:示例.travis.yml文件可在R包上运行良好实践
.travis.yml是Travis CI的配置文件,用于自动化构建、测试和部署项目。
以下是一个示例的.travis.yml文件:
```yaml
language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install -r requirements.txt
# command to run tests
script:
- pytest
# deployment configuration
deploy:
provider: heroku
api_key:
secure: YOUR_API_KEY_ENCRYPTED
app: your-heroku-app-name
```
这个示例文件设置了Python版本为3.6,安装依赖项并运行pytest测试。在部署配置中,它使用Heroku提供程序将应用程序部署到指定的Heroku应用程序上。需要替换YOUR_API_KEY_ENCRYPTED和your-heroku-app-name为相应的值。
阅读全文