neuropsychology/NeuroKit.py

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: python
sudo: false
python:
  - "2.7"
  - "3.5"
  - "3.5-dev" # 3.5 development branch
  - "3.6"
  - "3.6-dev" # 3.6 development branch
#   - "3.7-dev"
#   - "nightly"
# command to install dependencies
install: "pip install https://github.com/neuropsychology/NeuroKit.py/zipball/master"
# command to run tests
install:
  - pip install codecov
  - pip install -r requirements.txt

script:
  - python setup.py install
  - coverage run tests/tests.py


after_success:
  - codecov