-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy path.travis.yml
40 lines (34 loc) · 958 Bytes
/
.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
33
34
35
36
37
38
39
40
env:
global:
- PACKAGE="JavaScript Enhancements"
- SUBLIME_TEXT_VERSION="3"
matrix:
include:
- os: linux
language: python
python: 3.3
- os: osx
language: generic
before_install:
- curl -OL https://raw.githubusercontent.com/pichillilorenzo/JavaScriptEnhancements/master/sbin/travis.sh
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
export DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
fi
install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update;
brew upgrade python;
fi
- sh travis.sh bootstrap
- sh travis.sh install_package_control
- sh travis.sh install_color_scheme_unit
- sh travis.sh install_keypress
- sh travis.sh install_terminal_view_package
script:
- sh travis.sh run_tests --coverage
after_success:
- pip3 install codecov;
- codecov
notifications:
email: false