minikube/.travis.yml

39 lines
843 B
YAML
Raw Normal View History

2019-09-25 15:45:05 +00:00
os: linux
language: go
go:
- 1.12.9
env:
2019-09-25 15:33:34 +00:00
global:
- GOPROXY=https://proxy.golang.org
matrix:
include:
2019-09-25 16:14:53 +00:00
- language: python
env:
2019-09-25 18:20:28 +00:00
- TESTSUITE=boilerplate
2019-09-25 17:31:15 +00:00
before_install:
- pip install flake8 && flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
2019-09-25 16:14:53 +00:00
script: make test
- language: go
go: 1.12.9
env:
2019-09-25 18:20:28 +00:00
- TESTSUITE=lint
2019-09-25 17:17:42 +00:00
before_install:
- sudo apt-get install -y libvirt-dev
2019-09-25 16:14:53 +00:00
script: make test
- language: go
go: 1.12.9
env:
2019-09-25 18:20:28 +00:00
- TESTSUITE=unittest
2019-09-25 17:17:42 +00:00
before_install:
- sudo apt-get install -y libvirt-dev
2019-09-25 16:14:53 +00:00
script: make test
after_success:
- bash <(curl -s https://codecov.io/bash)
2019-09-25 16:14:53 +00:00
notifications:
webhooks: https://www.travisbuddy.com/
2019-09-22 02:10:37 +00:00
on_success: never # travisbuddy don't comment on successful