bumblebee-status/.travis.yml

30 lines
839 B
YAML
Raw Normal View History

os: linux
2016-12-10 19:27:50 +01:00
language: python
env:
global:
- CC_TEST_REPORTER_ID=40cb00907f7a10e04868e856570bb997ab9c42fd3b63d980f2b2269433195fdf
2016-12-10 19:27:50 +01:00
python:
- "3.4"
- "3.5"
- "3.6"
2020-01-26 14:11:58 +01:00
- "3.7"
2020-11-29 22:14:33 +01:00
- "3.8"
- "3.9"
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
addons:
apt:
packages:
libdbus-1-dev
libffi-dev
2020-12-04 18:55:21 +01:00
python3-pygit2
install:
- pip install -U coverage pytest pytest-mock freezegun
- pip install $(cat requirements/modules/*.txt | cut -d ' ' -f 1 | sort -u|grep -v dbus-python|grep -v libvirt-python|grep -v Pillow|grep -v pygit2)
script:
2020-06-20 14:53:44 +02:00
- coverage run --source=. -m pytest tests -v
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT