Revision 0bf7ca53ac7505287552180ebc79c8160c3bf2db authored by Dawid Laszuk on 22 April 2017, 19:20:16 UTC, committed by Dawid Laszuk on 22 April 2017, 19:20:16 UTC
1 parent 1270ccd
Raw File
.travis.yml
language: python
python:
  - "3.5"
# command to run tests
before_install:
  - pip install --only-binary=numpy,scipy numpy scipy
  - pip install -r requirements.txt
install:
    - pip install codecov
script: 
  - python -m PyEMD.tests.test_all
  - coverage run PyEMD/tests/test_all.py
after_success:
  - codecov
back to top