https://github.com/Radiomics/pyradiomics
Revision 0b99b20ac13d65c92e840b850b5304e6a990d111 authored by Steve Pieper on 21 April 2017, 13:03:31 UTC, committed by GitHub on 21 April 2017, 13:03:31 UTC
Set up developer mode so cmatrices shared library is accessible.

Addresses [issue #244](https://github.com/Radiomics/pyradiomics/issues/244)
1 parent 0dd46a7
Raw File
Tip revision: 0b99b20ac13d65c92e840b850b5304e6a990d111 authored by Steve Pieper on 21 April 2017, 13:03:31 UTC
Add extra install step
Tip revision: 0b99b20
.travis.yml
# Config file for automatic testing at travis-ci.org

branches:
 only:
  - master

language: python

matrix:
  include:

#    - os: osx
#      language: generic
#      env:
#        - PYTHON_VERSION=3.5.2

#    - os: osx
#      language: generic
#      env:
#        - PYTHON_VERSION=3.4.5

    - os: osx
      language: generic
      env:
        - PYTHON_VERSION=2.7.12

cache:
  directories:
    - $HOME/.pyenv/versions/3.5.2
    - $HOME/.pyenv/versions/3.4.5
    - $HOME/.pyenv/versions/2.7.12
    - $HOME/downloads

before_install:
  - pip install scikit-ci==0.13.0 scikit-ci-addons==0.11.0
  - ci_addons --install ../addons

install:
  - ci install

script:
  - ci test

after_success:
  - ci after_test
back to top