https://github.com/raphaelvallat/yasa
Raw File
Tip revision: ac57657b976e3f544ddaccc43e56f38164bb3e09 authored by Raphael Vallat on 30 August 2019, 19:02:49 UTC
Switch to 0.1.7
Tip revision: ac57657
.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:
  - pytest --cov

after_success:
  - codecov

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