Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 562f5d7 commit e0a644cCopy full SHA for e0a644c
.travis.yml
@@ -0,0 +1,25 @@
1
+sudo: false
2
+language: python
3
+python:
4
+ - "2.7"
5
+ - "3.5"
6
+
7
+os:
8
+ - osx
9
+ - linux
10
11
+before_install:
12
+ - if [ $TRAVIS_OS_NAME == "linux" ]; then
13
+ export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
14
+ sh -e /etc/init.d/xvfb start;
15
+ sleep 3;
16
+ fi
17
18
+install:
19
+ - npm install
20
+ - npm run vscode:prepublish
21
+ - pip install .
22
+ - pip install -r requirements.txt
23
24
+script:
25
+ - npm test --silent
0 commit comments