https://github.com/laszukdawid/PyEMD
Tip revision: a2ee3782be06dbaae5e65031a53d256a18f6b810 authored by Dawid Laszuk on 11 June 2018, 06:59:44 UTC
Add BEMD to doc
Add BEMD to doc
Tip revision: a2ee378
.travis.yml
language: python
python:
- 2.7
- 3.4
- 3.5
# 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 codecov
script:
- python -m PyEMD.tests.test_all
- coverage run PyEMD/tests/test_all.py
after_success:
- codecov
