https://github.com/vitay/ANNarchy
Raw File
Tip revision: a00b8329d2587fe8abafd289dc1d5cf952d8d75c authored by Julien Vitay on 15 March 2023, 15:04:08 UTC
Release 4.7.2.2
Tip revision: a00b832
.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