https://github.com/laszukdawid/PyEMD
Raw File
Tip revision: 52eadb6320043179c4f46abeee8c15f55f14b54b authored by Dawid on 04 December 2022, 19:33:03 UTC
Use tqdm as progress bar
Tip revision: 52eadb6
.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