From 42fcee389bb2250f8680395d698d64098a84b3ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 18 Jul 2023 16:49:06 +0200 Subject: [PATCH 1/2] README: Remove reference to go get MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's been deprecated for some time already. Signed-off-by: Fabiano FidĂȘncio --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 59c3dbac8..37ef4ddb4 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ code repositories. ## Getting the code ``` -$ go get -d github.com/kata-containers/tests +$ git clone https://github.com/kata-containers/tests ``` ## Test Content @@ -198,7 +198,7 @@ $ export PATH=${GOPATH}/bin:${PATH} Clone the `kata-container/tests` repository: ``` -$ go get -d github.com/kata-containers/tests +$ git clone https://github.com/kata-containers/tests $GOPATH/src/github.com/kata-containers/tests ``` Go to the tests repo directory: From 39eebfb721f34135380e0b51bdac0cad164ad78c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 18 Jul 2023 16:53:35 +0200 Subject: [PATCH 2/2] README: Add note about moving the tests to the `kata-containers` repo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's make it as explicit as possible that new tests should be developed for the `kata-containers` repo instead of this one. Fixes: #5717 Signed-off-by: Fabiano FidĂȘncio --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 37ef4ddb4..e551df857 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,22 @@ This repository contains various types of tests and utilities (called "content" from now on) for testing the [Kata Containers](https://github.com/kata-containers) code repositories. +**NOTE:** If you're working on adding new tests to Kata Containers, **please**, +keep in mind that we're in the process of migrating the tests from this repo to +the kata-containers one. + +The tests that already started being migrated are: +* kubernetes +* containerd +* metrics + +If you plan on expanding those tests, please, do **not** do this as part of this +repo, but upstream them directly to the `kata-containers` repo. + +If you plan on expanding other set of tests, please, approach the community and +ask about the plans for migrating those to the `kata-containers` repo before +starting the work here. + ## Getting the code ```