diff --git a/MAINTAINERS b/MAINTAINERS new file mode 100644 index 00000000..ef7f2392 --- /dev/null +++ b/MAINTAINERS @@ -0,0 +1,2 @@ +David Kornel, (@kornys) +Jakub Stejskal, (@Frawless) \ No newline at end of file diff --git a/README.md b/README.md index 9ec7addd..0afa0f00 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,43 @@ # ODH-E2E -E2e test suite for opendatahub using fabric8 kubernetes client +E2E test suite for opendatahub using fabric8 kubernetes client [![UnitTest](https://github.com/skodjob/odh-e2e/actions/workflows/test.yaml/badge.svg?branch=main)](https://github.com/ExcelentProject/odh-e2e/actions/workflows/test.yaml) -## Run continuous suite +### Requirements +* maven >= 3.6 +* java jdk >= 17 +* oc + +## List of test suites +* smoke +* upgrade +* standard +* continuous +* all (standard + upgrade) + +## Examples how to run selected test suites + +### Run continuous suite +```commandline +GITHUB_TOKEN="your_github_read_token" mvn verify -Pcontinuous +``` + +### Run standard (CRUD) suite +* Running all tests from standard test suite +```commandline +GITHUB_TOKEN="your_github_read_token" mvn verify -Pstandard +``` +* Select single test from standard test suite ```commandline -GITHUB_TOKEN="your_github_read_token" mvn verify -Pcontinuous --settings settings.xml +GITHUB_TOKEN="your_github_read_token" mvn verify -Pstandard -Dit.test=DataScienceClusterST#createDataScienceCluster ``` -## Run standard (CRUD) suite +### Run upgrade suite ```commandline -GITHUB_TOKEN="your_github_read_token" mvn verify -Pstandard --settings settings.xml +GITHUB_TOKEN="your_github_read_token" mvn verify -Pupgrade ``` -## RUN Unit test of the suite +### RUN Unit test of the suite ```commandline -GITHUB_TOKEN="your_github_read_token" mvn test --settings settings.xml +GITHUB_TOKEN="your_github_read_token" mvn test ``` \ No newline at end of file