https://github.com/NeuralEnsemble/libNeuroML
Raw File
Tip revision: 6c4ed0d7a1567321c5916f7f79e4f57f04c31c9d authored by Ankur Sinha on 18 October 2021, 16:55:53 UTC
Merge pull request #116 from NeuralEnsemble/fix/flake-ignore-nml
Tip revision: 6c4ed0d
.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