-
Notifications
You must be signed in to change notification settings - Fork 85
/
.travis.yml
32 lines (32 loc) · 1.09 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
sudo: false
language: python
python: pypy-5.3.1
env:
global:
- secure: "VTXK/Lmi8DCoKIvg82QwlBtudV1XIRYjQbREew/ysCuvTlfp1mouZgvQQW8g\nYFNS3Ah1KTDD2qC0iZiYa7pvghlzP43M2VYr3iUxrRfiDEEIMX0jw3/n1+Sr\nWRdywivNMHhfYsEzEorW3mlwq3OmbBf4EG/UgX8c23GmW7MnwcQ="
matrix:
- TEST_TYPE=docs
- TEST_TYPE=flake8
- TEST_TYPE=own
- TEST_TYPE=translate
- TEST_TYPE=translate-jit
- TEST_TYPE=rubyspec_untranslated
matrix:
allow_failures:
# This times out because untranslated is so slow :/
- python: pypy-5.3.1
env: TEST_TYPE=rubyspec_untranslated
include:
- os: osx
language: generic
before_install:
# Use Pypy v5.4.0
- brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/c5a201f49c9da47d4771ebc544d10b3f9c579021/Formula/pypy.rb
env: TEST_TYPE=translate-jit
install:
- pip install requests invoke
- invoke travis.install_requirements
script: invoke travis.run_tests
after_success: invoke travis.upload_build
notifications:
irc: "irc.freenode.org#topaz"