mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-11 19:29:16 +08:00

Because of many problems with vedored package testing (missing DB connections, etc), remove vendoring for Travis build Signed-off-by: Drasko DRASKOVIC <drasko.draskovic@gmail.com>
22 lines
352 B
YAML
22 lines
352 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.7
|
|
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- rm -rf vendor
|
|
|
|
# Sudo is required for docker
|
|
sudo: required
|
|
|
|
# Enable docker
|
|
services:
|
|
- docker
|
|
|
|
# In Travis, we need to bind to 127.0.0.1 in order to get a working connection. This environment variable
|
|
# tells dockertest to do that.
|
|
env:
|
|
- DOCKERTEST_BIND_LOCALHOST=true
|
|
|