https://github.com/freude/NanoNet
Raw File
Tip revision: 0e8e82d4f32c5694447240a6d91c505e3cf11b23 authored by Mykhailo Klymenko on 14 September 2018, 06:50:08 UTC
Merge pull request #49 from freude/silicon_nanowire
Tip revision: 0e8e82d
.travis.yml
language: python
python:
    - "2.7.12"
# command to install dependencies
install:
    - sudo apt-get install mpich
    - pip install python-coveralls
    - pip install coverage
    - pip install -r requirements.txt
    - pip install .
# command to run tests
script:
    - nosetests --with-coverage
branches:
    only:
        - develop
after_success:
    - coveralls                     # upload reports to coveralls.io

back to top