mirror of
https://github.com/vale981/binfootprint
synced 2025-03-04 08:41:41 -05:00
26 lines
350 B
YAML
26 lines
350 B
YAML
language: python
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
python:
|
|
- '2.7'
|
|
- '3.4'
|
|
- '3.5'
|
|
|
|
before_install:
|
|
- which python
|
|
- python --version
|
|
|
|
install:
|
|
- pip install numpy
|
|
- pip install pytest pytest-cov
|
|
- pip freeze
|
|
- pwd
|
|
- ls
|
|
|
|
script:
|
|
- py.test tests/ -v --cov=binfootprint --cov-report term-missing
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|