https://github.com/vitay/ANNarchy
Raw File
Tip revision: ec134257d6168b2bea18bb4619348def2eaf4af7 authored by Julien Vitay on 30 August 2023, 07:03:26 UTC
Issue #13: report(): neurons without parameters do not generate empty tables.
Tip revision: ec13425
.travis.yml
arch: amd64          # optional, this is default, routes to a full VM (sudo enabled)
os: linux            # optional, this is default
dist: focal         # ubuntu 20.04
language: python
python:
  - "3.8"
cache: apt
addons:
  apt:
    packages:
    - libatlas-base-dev
    - liblapack-dev
    - gfortran
before_install:
  - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
  - bash miniconda.sh -b -p $HOME/miniconda
  - export PATH="$HOME/miniconda/bin:$PATH"
  - hash -r
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  # Useful for debugging any issues with conda
  - conda info -a

install:
  - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip numpy scipy nose sympy cython matplotlib
  - source activate test-environment
  - python setup.py install
# command to run tests
script: python tests/test_single_thread.py
# Branches to build
branches:
  only:
    - master
    - develop
back to top