https://github.com/sanger-pathogens/gubbins
Raw File
Tip revision: ffeaa9ea6b887ee2b3fdfa26d32b906a814caab8 authored by Christoph PĆ¼the on 03 January 2020, 17:18:45 UTC
Merge pull request #265 from smoe/patch-1
Tip revision: ffeaa9e
.travis.yml
language: python
addons:
  apt:
    packages:
    - autoconf
    - check
    - g++
    - libtool
    - libsubunit-dev
    - pkg-config
    - python3-dev
    - python3-setuptools
cache:
  directories:
  - "build"
  - "$HOME/.cache/pip"
python:
  - "3.5"
sudo: false
install:
  - "source ./install_dependencies.sh"
before_script:
- pip install codecov
script:
  - autoreconf -i && ./configure --enable-maintainer-mode CFLAGS='-O0 --coverage' && make && make check
  - cd python && coverage run setup.py test
after_success:
  - bash <(curl -s https://codecov.io/bash)
  - codecov
back to top