https://github.com/laszukdawid/PyEMD
Tip revision: 9caf51c6cd1bc1e869d67d002310c1e81cba541a authored by Dawid Laszuk on 28 December 2021, 21:37:02 UTC
Update workflow to publish package on version tag push
Update workflow to publish package on version tag push
Tip revision: 9caf51c
.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
