We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82c320d commit 76b2ec9Copy full SHA for 76b2ec9
2 files changed
.travis.yml
@@ -6,9 +6,5 @@ node_js:
6
notifications:
7
slack: openframeproject:wGLUMLh5CTAIOGsPUSU8eMf3
8
9
-# A bit annoying, but we manually install all npm deps so that the install.sh script doesn't get executed on travis
10
-install:
11
- npm install coveralls@^2.11.9 eslint@^2.8.0 istanbul@^0.4.2 mocha@^2.3.4 sinon@^1.17.2 openframe-extension@^0.1.0 debug@^2.2.0
12
-
13
script:
14
- npm run test-coveralls
install.sh
@@ -4,6 +4,11 @@
4
5
echo "Openframe Website Extension -- install.sh"
+if ! [ -z "$TRAVIS" ]; then
+ echo "TRAVIS env, don't install"
+ exit 0
+fi
+
# Some limited platform detection might be in order... though at present we're targeting the Pi
os=$(uname)
arq=$(uname -m)
0 commit comments