Revision 3d593fc1c4df44da47f65b1a9c1981e58fe6b4b0 authored by Tom Russell on 09 September 2021, 16:32:14 UTC, committed by Tom Russell on 09 September 2021, 16:32:14 UTC
1 parent 1e454e3
Raw File
.travis.yml
language: python
python:
- "3.7"

install:
  - pip install 'pytest>=4.6' pytest-cov coveralls
  - python setup.py develop
  - pip freeze

before_script:
  - git config --global user.email "edward.oughton@ouce.ox.ac.uk"
  - git config --global user.name "Edward Oughton"

script:
  - python -m pytest --cov=itmlogic tests

after_success:
  - coveralls

notifications:
  email: false

deploy:
  provider: pypi
  user: edwardoughton
  on:
    tags: true
    branch: master
back to top