加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 538 Bytes
一键复制 编辑 原始数据 按行查看 历史
Markus 提交于 2020-11-15 17:22 . Remove 2.7 and 3.5 due to end of life.
---
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
os: linux
dist: bionic
env:
global:
- DEPS_DIR=$HOME/dependencies
matrix:
- WITH_TA_LIBRARY=yes
TA_INCLUDE_PATH=$DEPS_DIR/include
LD_LIBRARY_PATH=$DEPS_DIR/lib
TA_LIBRARY_PATH=$DEPS_DIR/lib
cache:
directories:
- $DEPS_DIR
install:
- pip install --upgrade pip wheel
- pip install -r requirements_test.txt
- if [ $WITH_TA_LIBRARY = "yes" ]; then
./tools/build_talib_from_source.bash $DEPS_DIR;
fi
script:
- make test
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化