File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ dev: config/y.go
99 @TF_DEV=1 sh -c " $( CURDIR) /scripts/build.sh"
1010
1111test : config/y.go
12- TF_ACC= go test $(TEST ) $(TESTARGS ) -timeout=10s
12+ TF_ACC= go test $(TEST ) $(TESTARGS ) -timeout=10s -parallel=4
1313
1414testacc : config/y.go
1515 @if [ " $( TEST) " = " ./..." ]; then \
Original file line number Diff line number Diff line change 88const testBBUrl = "https://bitbucket.org/hashicorp/tf-test-git"
99
1010func TestBitBucketDetector (t * testing.T ) {
11+ t .Parallel ()
12+
1113 if _ , err := http .Get (testBBUrl ); err != nil {
1214 t .Log ("internet may not be working, skipping BB tests" )
1315 t .Skip ()
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ func TestHgGetter_impl(t *testing.T) {
2020}
2121
2222func TestHgGetter (t * testing.T ) {
23+ t .Parallel ()
24+
2325 if ! testHasHg {
2426 t .Log ("hg not found, skipping" )
2527 t .Skip ()
@@ -41,6 +43,8 @@ func TestHgGetter(t *testing.T) {
4143}
4244
4345func TestHgGetter_branch (t * testing.T ) {
46+ t .Parallel ()
47+
4448 if ! testHasHg {
4549 t .Log ("hg not found, skipping" )
4650 t .Skip ()
You can’t perform that action at this time.
0 commit comments