swh:1:snp:f4c1ad9395dff93a83299e32c295952039ac85ba
Raw File
Tip revision: 5f9c1b7577f82bb6f11428573101ab8f34617df3 authored by Siddharth Srinivasan on 02 November 2021, 22:20:02 UTC
Refactor -- create new linop called ParallelAdd instead
Tip revision: 5f9c1b7
.travis.yml
language: python
python:
  - "3.6"
  - "3.7"
  - "3.8"

install:
  - pip install --upgrade -r requirements.txt
  - pip install codecov flake8 sphinx sphinx_rtd_theme matplotlib

script:
  - bash run_tests.sh

after_success:
  - codecov
back to top