Skip to content
Snippets Groups Projects
.travis.yml 501 B
Newer Older
branches:
  only: 11-text-mining-sw
Carlos Vega's avatar
Carlos Vega committed
language: python
sudo: required
python:
  - "3.7"
before_install:
  - sudo apt-get install python3-pip
  - sudo pip3 install virtualenv 
install:
  #install all modules
  - virtualenv env 
  - source env/bin/activate
  - find . -name "setup.py" -maxdepth 2 | sed 's|/setup.py||g' | xargs pip install -e
script:
  - python biokb/textminingservice_biokb/biokb.py
notifications:
  email:
    on_success: never # default: change
    on_failure: always # default: always