forked from CJTozer/SublimeDiffView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (35 loc) · 953 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
41
42
43
sudo: required
env:
global:
- PACKAGE="DiffView"
- SUBLIME_TEXT_VERSION="3"
# mutliple os matrix
matrix:
include:
- os: linux
language: python
- os: osx
language: generic
services:
- xvfb
before_install:
- curl -OL https://raw.githubusercontent.com/SublimeText/UnitTesting/master/sbin/travis.sh
install:
# bootstrap the testing environment
- sh travis.sh bootstrap
# install Package Control and package denepdencies
# - sh travis.sh install_package_control
script:
# run tests with test coverage report
- sh travis.sh run_tests --coverage
# testing syntax_test files
# - sh travis.sh run_syntax_tests
# - sh travis.sh run_syntax_compatibility
after_success:
# remove the following if `coveralls` is not needed
- pip3 install python-coveralls;
- pip3 install codecov;
- coveralls
- codecov
notifications:
email: false