summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Finney <spxtr@google.com>2016-09-22 18:40:53 -0700
committerJoe Finney <spxtr@google.com>2016-09-22 18:40:53 -0700
commit3e034b658318da6bfe1677fc82c50f0dde3fff0b (patch)
treef4690514c7362a7c351f1a11ab4eead23a432a1f
parenteb797e756de41791fcba07ef874ebf8673671b7d (diff)
Make e2e.go give us JUnit results.
-rw-r--r--e2e-tests.md10
1 files changed, 2 insertions, 8 deletions
diff --git a/e2e-tests.md b/e2e-tests.md
index 6d457f59..0200afb8 100644
--- a/e2e-tests.md
+++ b/e2e-tests.md
@@ -125,12 +125,6 @@ go run hack/e2e.go -v --build
# Create a fresh cluster. Deletes a cluster first, if it exists
go run hack/e2e.go -v --up
-# Push code to an existing cluster
-go run hack/e2e.go -v --push
-
-# Push to an existing cluster, or bring up a cluster if it's down.
-go run hack/e2e.go -v --pushup
-
# Run all tests
go run hack/e2e.go -v --test
@@ -144,12 +138,12 @@ go run hack/e2e.go -v --test --test_args="--ginkgo.skip=Pods.*env"
GINKGO_PARALLEL=y go run hack/e2e.go --v --test --test_args="--ginkgo.skip=\[Serial\]"
# Flags can be combined, and their actions will take place in this order:
-# --build, --push|--up|--pushup, --test, --down
+# --build, --up, --test, --down
#
# You can also specify an alternative provider, such as 'aws'
#
# e.g.:
-KUBERNETES_PROVIDER=aws go run hack/e2e.go -v --build --pushup --test --down
+KUBERNETES_PROVIDER=aws go run hack/e2e.go -v --build --up --test --down
# -ctl can be used to quickly call kubectl against your e2e cluster. Useful for
# cleaning up after a failed test or viewing logs. Use -v to avoid suppressing