Skip to content

Commit

Permalink
Move install to jobs in .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
above-c-level committed Dec 2, 2018
1 parent 5af8388 commit 5bae67a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@ before_install: # Code coverage for codeclimate
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build

install:
# - TEST_DIR=$PWD
- pip install --upgrade pip setuptools wheel
- pip install coverage coveralls nose tables
- pip install -r requirements.txt


jobs:
include:
- stage: Core Tests
python:
- 3.6
install:
- pip install --upgrade pip setuptools wheel
- pip install coverage coveralls nose tables
- pip install -r requirements.txt
script:
- nosetests tests/core_tests
- coveralls
Expand All @@ -31,6 +28,9 @@ jobs:
python:
- 3.6
install:
- pip install --upgrade pip setuptools wheel
- pip install coverage coveralls nose tables
- pip install -r requirements.txt
- pip install lightgbm keras tensorflow catboost xgboost
script:
- nosetests tests/advanced_tests
Expand Down

0 comments on commit 5bae67a

Please sign in to comment.