We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee5435a commit 04e1fefCopy full SHA for 04e1fef
.travis.yml
@@ -19,9 +19,7 @@
19
- test -z "$(golint ./... | grep -v vendor | tee /dev/stderr)"
20
- test -z "$(gofmt -s -l . | grep -v vendor | tee /dev/stderr)"
21
- go test $(go list ./... | grep -v vendor)
22
- - mysql -u root < test-fixtures/shop.sql &&
23
- mysql -u root < test-fixtures/blog.sql &&
24
- ./dba test-fixtures/sample.conf.hcl
+ - ./run-tests.sh
25
26
services:
27
- mysql
main_test.go
run-tests.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+
3
+set -ev
4
5
+mysql -u root < test-fixtures/shop.sql
6
7
+mysql -u root < test-fixtures/blog.sql
8
9
+./dba test-fixtures/sample.conf.hcl
0 commit comments