https://github.com/laszukdawid/PyEMD
Tip revision: ecda9ca871d396d41ffd2ae8cd2c352a5d245cb2 authored by Dawid Laszuk on 02 November 2021, 03:58:24 UTC
Fix package builder
Fix package builder
Tip revision: ecda9ca
.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
