加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.aten.yml 601 Bytes
一键复制 编辑 原始数据 按行查看 历史
Elias Ellison 提交于 2019-03-07 09:12 . use flake8-mypy (#17721)
# https://travis-ci.org/zdevito/ATen
language: python
python:
- 2.7
- 3.6
dist: trusty
before_install:
- sudo apt-get install -qq valgrind
install:
- travis_retry pip install pyyaml typing
script:
- cd aten
- mkdir build install
- cd build
- cmake .. -DUSE_CUDA=OFF -DCMAKE_INSTALL_PREFIX=../install
- make install
- ../tools/run_tests.sh .
- cd ..
- tools/test_install.sh $(pwd)/install $(pwd)
matrix:
fast_finish: true
include:
env: LINT_CHECK
python: "2.7"
install: pip install flake8-mypy
script: flake8
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化