Skip to content

Commit

Permalink
K8s integration test is really an e2e test, rename accordingly
Browse files Browse the repository at this point in the history
Signed-off-by: MOZGIII <[email protected]>
  • Loading branch information
MOZGIII committed Jun 4, 2020
1 parent 1236deb commit facea6f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
- uses: actions/checkout@v1
- run: make test-shutdown

test-integration-kubernetes:
test-e2e-kubernetes:
# This is an experimental test. Allow it to fail without failing the whole
# workflow, but keep it executing on every build to gather stats.
continue-on-error: true
Expand All @@ -194,7 +194,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v1
- run: make slim-builds
- run: make test-integration-kubernetes
- run: make test-e2e-kubernetes
env:
USE_MINIKUBE_DOCKER: "true"
CONTAINER_IMAGE_REPO: vector-test
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ test-integration-splunk: ## Runs Splunk integration tests
$(RUN) test-integration-splunk

PACKAGE_DEB_USE_CONTAINER ?= $(USE_CONTAINER)
test-integration-kubernetes: ## Runs Kubernetes integration tests
PACKAGE_DEB_USE_CONTAINER="$(PACKAGE_DEB_USE_CONTAINER)" USE_CONTAINER=none $(RUN) test-integration-kubernetes
test-e2e-kubernetes: ## Runs Kubernetes E2E tests
PACKAGE_DEB_USE_CONTAINER="$(PACKAGE_DEB_USE_CONTAINER)" USE_CONTAINER=none $(RUN) test-e2e-kubernetes

test-shutdown: ## Runs shutdown tests
$(RUN) test-shutdown
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ export CONTAINER_IMAGE
export KUBE_TEST_DEPLOY_COMMAND="scripts/deploy-kubernetes-test.sh"

# Run the tests.
cargo test --test kubernetes --no-default-features --features k8s-openapi -- --nocapture
cargo test --test kubernetes-e2e --no-default-features --features k8s-openapi -- --nocapture
File renamed without changes.

0 comments on commit facea6f

Please sign in to comment.