1
0

added missing libraries

This commit is contained in:
konrad
2018-07-24 14:06:03 +02:00
parent 9de26f6547
commit 6ff10e6353
52 changed files with 2386 additions and 0 deletions

26
vendor/gopkg.in/testfixtures.v2/.travis.yml generated vendored Normal file
View File

@ -0,0 +1,26 @@
language: go
go:
- '1.9'
- '1.10'
services:
- postgresql
- mysql
addons:
postgresql: "9.4"
before_script:
- mysql -e 'CREATE DATABASE testfixtures_test;'
- psql -c 'CREATE DATABASE testfixtures_test;' -U postgres
install:
- go get -t -tags 'sqlite postgresql mysql' ./...
- curl -s https://raw.githubusercontent.com/go-task/task/master/install-task.sh | sh
- bin/task dl-deps
- cp .sample.env .env
script:
- bin/task lint
- bin/task test-free