Update readme, remove parallel from rel tests

This commit is contained in:
Patrick O'brien 2016-08-16 01:48:37 +10:00
parent a54725f0fc
commit 9f63e653a6
3 changed files with 1 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# SQLBoiler
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/vattle/sqlboiler/blob/master/LICENSE.md)
[![License](https://img.shields.io/badge/license-BSD-blue.svg)](https://github.com/vattle/sqlboiler/blob/master/LICENSE)
[![GoDoc](https://godoc.org/github.com/pobri19/sqlboiler?status.svg)](https://godoc.org/github.com/pobri19/sqlboiler)
[![CircleCI](https://circleci.com/gh/vattle/sqlboiler.svg?style=shield)](https://circleci.com/gh/vattle/sqlboiler)
[![Go Report Card](https://goreportcard.com/badge/kubernetes/helm)](http://goreportcard.com/report/vattle/sqlboiler)

View file

@ -8,8 +8,6 @@
{{- else -}}
{{- $rel := textsFromRelationship $dot.Tables $table . -}}
func test{{$rel.LocalTable.NameGo}}ToMany{{$rel.Function.Name}}(t *testing.T) {
t.Parallel()
var err error
tx := MustTx(boil.Begin())
defer tx.Rollback()

View file

@ -1,7 +1,5 @@
{{- define "relationship_to_one_test_helper"}}
func test{{.LocalTable.NameGo}}ToOne{{.ForeignTable.NameGo}}_{{.Function.Name}}(t *testing.T) {
t.Parallel()
tx := MustTx(boil.Begin())
defer tx.Rollback()