https://github.com/laszukdawid/PyEMD
Raw File
Tip revision: 7361a883e21bf92a9a62abfeaceffc38e91955b9 authored by Dawid on 23 May 2023, 21:48:42 UTC
Fix sort
Tip revision: 7361a88
.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