Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
setting python version to 2.7 in installing chrome driver by hand
  • Loading branch information
ilarimikkonen authored Aug 22, 2019
1 parent d4dc00a commit 7319323
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ dist: xenial
language: node_js
node_js:
- '8'

language: python
python:
- "2.7"

addons:
chrome: stable
apt:
packages:
- chromium-chromedriver
branches:
only:
- develop
Expand All @@ -32,10 +33,10 @@ before_install:
before_script:
#Previously used yarn, but now after migrating to meteor 1.8, yarn fails to create some binaries.
- meteor npm install
#Need to install chromedriver by hand
# - wget http://chromedriver.storage.googleapis.com/77.0.3865.40/chromedriver_linux64.zip
# - unzip chromedriver_linux64.zip -d /home/travis/virtualenv/python2.7.12/bin/
# - export CHROME_BIN=chromium-browser
Need to install chromedriver by hand
- wget http://chromedriver.storage.googleapis.com/77.0.3865.40/chromedriver_linux64.zip
- unzip chromedriver_linux64.zip -d /home/travis/virtualenv/python2.7.12/bin/
- export CHROME_BIN=chromium-browser
- npm run lint
- npm view chimp version
- npm view chromedriver version
Expand Down

0 comments on commit 7319323

Please sign in to comment.