https://github.com/AuReMe/metage2metabo
Raw File
Tip revision: c7d55a045ecf57d7d7e6023d7803359ff9eab73c authored by Arnaud Belcour on 28 October 2019, 10:42:43 UTC
Move to 1.1.3.
Tip revision: c7d55a0
.travis.yml
matrix:
    include:
        - os: linux

dist: trusty
sudo: required
language: python
python:
  - "3.6"

# Install packages
before_script:
- python3 setup.py develop
- pip install networkx ete3
- cd test

script:
- pytest test_m2m_addedvalue.py --disable-pytest-warnings
- pytest test_m2m_mincom.py --disable-pytest-warnings
- pytest test_m2m_analysis.py --disable-pytest-warnings
back to top