https://github.com/raphaelvallat/yasa
Raw File
Tip revision: c15523e5b7bf5b59a2ca73f7a8a815e9d9005969 authored by Raphael Vallat on 05 March 2019, 06:47:06 UTC
Switch to 0.1.3
Tip revision: c15523e
.travis.yml
sudo: required
language: python
matrix:
  include:
    - python: 3.5
    - python: 3.6
    - python: 3.7
      dist: xenial

install:
  - pip install -r requirements.txt
  - pip install -r requirements-test.txt
  - pip install .
  - export NUMBA_DISABLE_JIT=1  # Disable JIT

script:
  - py.test --cov

after_success:
  - codecov

notifications:
    email: raphaelvallat9@gmail.com
back to top