From 89d43536e4da55cb0af1d06980dfb4b420fca74d Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Mon, 14 Aug 2017 12:36:45 -0400 Subject: [PATCH] Rename test-ci to test-k8s Renames test-ci to test-k8s to coincide with our `make test-openshift` command. --- Makefile | 6 +++--- script/{test_ci => test_k8s}/kubernetes.sh | 0 script/{test_ci => test_k8s}/test.sh | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename script/{test_ci => test_k8s}/kubernetes.sh (100%) rename script/{test_ci => test_k8s}/test.sh (100%) diff --git a/Makefile b/Makefile index 3e0d884f..0ba3a6f7 100644 --- a/Makefile +++ b/Makefile @@ -110,6 +110,6 @@ test-image: test-container: docker run -v `pwd`:/opt/tmp/kompose:ro -it $(TEST_IMAGE) -.PHONE: test-ci -test-ci: - ./script/test_ci/test.sh +.PHONE: test-k8s +test-k8s: + ./script/test_k8s/test.sh diff --git a/script/test_ci/kubernetes.sh b/script/test_k8s/kubernetes.sh similarity index 100% rename from script/test_ci/kubernetes.sh rename to script/test_k8s/kubernetes.sh diff --git a/script/test_ci/test.sh b/script/test_k8s/test.sh similarity index 100% rename from script/test_ci/test.sh rename to script/test_k8s/test.sh