[ARVADOS] updated: 2.1.0-98-g1e044ad2f
Git user
git at public.arvados.org
Tue Nov 17 14:40:07 UTC 2020
Summary of changes:
lib/controller/integration_test.go | 5 +++++
1 file changed, 5 insertions(+)
via 1e044ad2fc88020b03430a3b3c32331aaddc9e2d (commit)
from 70be08860db9e45d78a037d86b9a0420f1e392a1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 1e044ad2fc88020b03430a3b3c32331aaddc9e2d
Author: Tom Clegg <tom at tomclegg.ca>
Date: Tue Nov 17 09:39:50 2020 -0500
17106: Skip s3cmd test if s3cmd not installed.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at tomclegg.ca>
diff --git a/lib/controller/integration_test.go b/lib/controller/integration_test.go
index 1f28c877a..5c1181b70 100644
--- a/lib/controller/integration_test.go
+++ b/lib/controller/integration_test.go
@@ -285,6 +285,11 @@ func (s *IntegrationSuite) TestGetCollectionByPDH(c *check.C) {
}
func (s *IntegrationSuite) TestS3WithFederatedToken(c *check.C) {
+ if _, err := exec.LookPath("s3cmd"); err != nil {
+ c.Skip("s3cmd not in PATH")
+ return
+ }
+
testText := "IntegrationSuite.TestS3WithFederatedToken"
conn1 := s.conn("z1111")
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list