https://github.com/laszukdawid/PyEMD
Revision da7d203a45cca4b4a9cc32d292eefe3d6c3ac229 authored by Dawid Laszuk on 29 October 2021, 06:40:02 UTC, committed by Dawid Laszuk on 29 October 2021, 06:40:02 UTC
1 parent 6d78eb4
Raw File
Tip revision: da7d203a45cca4b4a9cc32d292eefe3d6c3ac229 authored by Dawid Laszuk on 29 October 2021, 06:40:02 UTC
Fixing #102 - check for zero residue and discard
Tip revision: da7d203
.travis.yml
os: linux
dist: xenial
language: python
python:
  - 3.5
  - 3.6
  - 3.7
  - 3.8
# 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