Print test namespace name at the start of all test specs

Signed-off-by: James Munnelly <james@munnelly.eu>
This commit is contained in:
James Munnelly 2019-01-07 22:16:33 +00:00
parent 2d55a8fa26
commit 016ae6077f

View File

@ -115,6 +115,8 @@ func (f *Framework) BeforeEach() {
f.Namespace, err = f.CreateKubeNamespace(f.BaseName)
Expect(err).NotTo(HaveOccurred())
By("Using the namespace " + f.Namespace.Name)
By("Building a ResourceQuota api object")
_, err = f.CreateKubeResourceQuota()
Expect(err).NotTo(HaveOccurred())