swh:1:snp:2e3e006b9d269cc1508947c8f4d24ff452a05c14
Raw File
Tip revision: 75d1630a0c6354a3997c4068dc8cdc447491b6f8 authored by Padraig Gleeson on 16 December 2021, 14:09:58 UTC
Merge pull request #119 from NeuralEnsemble/development
Tip revision: 75d1630
.travis.yml
language: python

# necessary for 3.7 due to https://github.com/PyTables/PyTables/issues/704
addons:
  apt:
    packages:
      - libhdf5-dev

matrix:
  include:
    - python: 2.7
    - python: 3.7
    - python: 3.8
    - python: 3.9

# command to install dependencies
install:
  - pip install -r requirements.txt
  - pip install .[full]

# command to run tests and examples, e.g. python setup.py test
script:
  - cd ./neuroml/test && pytest -v --strict -W all
  - cd ../examples && python run_all.py

services: mongodb
back to top