https://github.com/laszukdawid/PyEMD
Revision a3dfd12c25ab7a7bd4a1bccfbd724e576fc2b8bc authored by Dawid Laszuk on 26 December 2018, 19:30:39 UTC, committed by Dawid Laszuk on 26 December 2018, 19:31:34 UTC
1 parent d108b6c
Raw File
Tip revision: a3dfd12c25ab7a7bd4a1bccfbd724e576fc2b8bc authored by Dawid Laszuk on 26 December 2018, 19:30:39 UTC
Update Visualisation examples
Tip revision: a3dfd12
.travis.yml
language: python
python:
  - 2.7
  - 3.4
  - 3.5
# 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 codecov
script: 
  - python -m PyEMD.tests.test_all
  - coverage run PyEMD/tests/test_all.py
after_success:
  - codecov
back to top