summaryrefslogtreecommitdiff
path: root/remote_test.go
diff options
context:
space:
mode:
authorMirko Nosenzo <[email protected]>2016-10-08 11:33:56 +0200
committerMirko Nosenzo <[email protected]>2016-10-08 11:33:56 +0200
commit4567e4f7fa621df30e84ee643a27998776919b26 (patch)
tree203c24d93683a2bda5bab19c578a2c108159337e /remote_test.go
parent717a47f7547811622fb1c08c28262a8c63af96fe (diff)
parent22091886372e73de5d66168e8665775676ec13c5 (diff)
Merge remote-tracking branch 'upstream/v24' into remote-refinements
Diffstat (limited to 'remote_test.go')
-rw-r--r--remote_test.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/remote_test.go b/remote_test.go
index 978b803..3d00640 100644
--- a/remote_test.go
+++ b/remote_test.go
@@ -6,6 +6,7 @@ import (
)
func TestListRemotes(t *testing.T) {
+ t.Parallel()
repo := createTestRepo(t)
defer cleanupTestRepo(t, repo)
@@ -33,6 +34,7 @@ func assertHostname(cert *Certificate, valid bool, hostname string, t *testing.T
}
func TestCertificateCheck(t *testing.T) {
+ t.Parallel()
repo := createTestRepo(t)
defer cleanupTestRepo(t, repo)
@@ -52,6 +54,7 @@ func TestCertificateCheck(t *testing.T) {
}
func TestRemoteConnect(t *testing.T) {
+ t.Parallel()
repo := createTestRepo(t)
defer cleanupTestRepo(t, repo)
@@ -63,6 +66,7 @@ func TestRemoteConnect(t *testing.T) {
}
func TestRemoteLs(t *testing.T) {
+ t.Parallel()
repo := createTestRepo(t)
defer cleanupTestRepo(t, repo)
@@ -81,6 +85,7 @@ func TestRemoteLs(t *testing.T) {
}
func TestRemoteLsFiltering(t *testing.T) {
+ t.Parallel()
repo := createTestRepo(t)
defer cleanupTestRepo(t, repo)
@@ -107,6 +112,7 @@ func TestRemoteLsFiltering(t *testing.T) {
}
func TestRemotePruneRefs(t *testing.T) {
+ t.Parallel()
repo := createTestRepo(t)
defer cleanupTestRepo(t, repo)
@@ -129,6 +135,7 @@ func TestRemotePruneRefs(t *testing.T) {
}
func TestRemotePrune(t *testing.T) {
+ t.Parallel()
remoteRepo := createTestRepo(t)
defer cleanupTestRepo(t, remoteRepo)