https://github.com/laszukdawid/PyEMD
Revision b96ebdee90c567d723c0f485f4fea380ec0f3cf3 authored by Dawid Laszuk on 07 August 2019, 04:18:54 UTC, committed by GitHub on 07 August 2019, 04:18:54 UTC
1 parent 947041c
Raw File
Tip revision: b96ebdee90c567d723c0f485f4fea380ec0f3cf3 authored by Dawid Laszuk on 07 August 2019, 04:18:54 UTC
Experiment with support button
Tip revision: b96ebde
.travis.yml
sudo: false
language: python
python:
  - 2.7
  - 3.5
  - 3.6
# command to run tests
before_install:
  - pip install --upgrade pip setuptools wheel
install:
  - pip install --only-binary=numpy,scipy numpy scipy
  - pip install -r requirements.txt
  - pip install -r requirements-extra.txt
  - pip install codecov
script: 
  - python -m PyEMD.tests.test_all
  - coverage run PyEMD/tests/test_all.py
after_success:
  - codecov
back to top