https://github.com/laszukdawid/PyEMD
Tip revision: 7b0c9c66b933f7a20688ae30c4d22c07c051e59c authored by Dawid Laszuk on 05 September 2021, 20:04:32 UTC
docs: Add citation file for GitHub to parse
docs: Add citation file for GitHub to parse
Tip revision: 7b0c9c6
.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
