https://github.com/kescobo/kvasir
Raw File
Tip revision: 55706b01814dd1592f96b828c56be047ab4c2782 authored by Kevin Bonham on 22 February 2020, 20:37:33 UTC
Add repo status badge
Tip revision: 55706b0
.travis.yml
services:
  - mongodb
language: python
python:
  - "2.7"
  - "3.5"
before_install:
  - if [ `uname` = "Linux" ]; then
      sudo apt-get -qq update;
      sudo apt-get install -y ncbi-blast+;
    elif [ `uname` = "Darwin" ]; then
      brew tap homebrew/science;
      brew update;
      brew install blast;
    fi
before_script:
  - export PATH=$HOME/.local/bin:$PATH
install:
  - pip install .
  - pip install -r requirements.txt
# command to run tests
script: python -m pytest kvasir/tests/basic_tests.py
notifications:
  email: false
back to top