From 727567cb336fbf02458fb8cc6b8f47de006e3fd3 Mon Sep 17 00:00:00 2001 From: Tejal Desai Date: Thu, 16 Jan 2020 15:40:01 -0800 Subject: [PATCH] Fix steps to run individual integration test --- DEVELOPMENT.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index b9c81f2ea..b395d2d9a 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -83,7 +83,7 @@ If you want to run `make integration-test`, you must override the project using You can also run tests with `go test`, for example to run tests individually: ```shell -go test -v --bucket $GCS_BUCKET --repo $IMAGE_REPO -run TestLayers/test_layer_Dockerfile_test_copy_bucket +go test ./integration -v --bucket $GCS_BUCKET --repo $IMAGE_REPO -run TestLayers/test_layer_Dockerfile_test_copy_bucket ``` Requirements: @@ -131,4 +131,4 @@ When you have changes you would like to propose to kaniko, you will need to: Each PR must be reviewed by a maintainer. This maintainer will add the `kokoro:run` label to a PR to kick of [the integration tests](#integration-tests), which must pass for the PR -to be submitted. \ No newline at end of file +to be submitted.