https://github.com/laszukdawid/PyEMD
Raw File
Tip revision: 0c751a639e9296bb1d915e24543b37525fac28bd authored by Dawid Laszuk on 05 December 2021, 23:04:37 UTC
Add Whitenoise_check to documentation
Tip revision: 0c751a6
.travis.yml
os: linux
dist: xenial
language: python
python:
  - 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