https://github.com/laszukdawid/PyEMD
Revision f717078c9a048a999d2ff8a2dfca7504314f4f47 authored by Dawid Laszuk on 17 January 2021, 19:38:05 UTC, committed by Dawid Laszuk on 17 January 2021, 19:38:05 UTC
1 parent 9329ec3
Raw File
Tip revision: f717078c9a048a999d2ff8a2dfca7504314f4f47 authored by Dawid Laszuk on 17 January 2021, 19:38:05 UTC
Sphinx doesn't support "Keyword parameters" in numpydoc style
Tip revision: f717078
.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