11 lines
468 B
YAML
11 lines
468 B
YAML
test:
|
|
pre:
|
|
- go get github.com/jstemmer/go-junit-report
|
|
- echo -e "[postgres]\nhost=\"localhost\"\nport=5432\nuser=\"ubuntu\"\ndbname=\"sqlboiler\"" > sqlboiler.toml
|
|
- createdb -U ubuntu sqlboiler
|
|
- psql -U ubuntu sqlboiler < ./testdata/test_schema.sql
|
|
- ./sqlboiler postgres
|
|
override:
|
|
- go test -v -race ./... > $CIRCLE_ARTIFACTS/gotest.txt
|
|
post:
|
|
- cat $CIRCLE_ARTIFACTS/gotest.txt | go-junit-report > $CIRCLE_TEST_REPORTS/junit.xml
|