Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(registry-operator): change end to end testing framework #23

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,17 @@ To maintain consistency and clarity across ADRs, we use the following template:

## Decision Outcome

Selected option: <Option>, because <reasoining>.
Selected option: _<option>_, because _<reasoining>_.

## Previous Selections

~~Selected option: _<option>_, because _<reasoining>_.~~

## Changelog

| Date | Description |
|------------|-------------|
| YYYY-MM-DD | <change> |
```

Feel free to customize this template to suit the specific needs and conventions of your project.
Expand Down
13 changes: 12 additions & 1 deletion docs/6-e2e-testing-framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,22 @@ The selection of an appropriate end-to-end testing framework is paramount to est


* [behave](https://github.com/behave/behave) (Python)
* [Kyverno Chainsaw](https://kyverno.github.io/chainsaw/latest/) (low-code, YAML)
* [Ginkgo](https://onsi.github.io/ginkgo/) and [Gomega](https://onsi.github.io/gomega/) (Go)
* [pytest-bdd](https://github.com/pytest-dev/pytest-bdd) (Python)
* [Radish](https://github.com/radish-bdd/radish) (Python)
* [testing](https://pkg.go.dev/testing) (Go)

## Decision Outcome

Selected option: *pytest-bdd*, because it has great community support, integrates well with other *pytest* plugins, is well integrated with `*.feature` files.
Selected option: *Kyverno Chainsaw*, because it extremly simple to build tests, tests are executed really quickly, community is quickly growing.

## Previous Selections

~~Selected option: *pytest-bdd*, because it has great community support, integrates well with other *pytest* plugins, is well integrated with `*.feature` files.~~

## Changelog

| Date | Description |
|------------|-----------------------------------------------------------|
| 2024-04-30 | changed decision from *pytest-bdd* to *Kyverno Chainsaw*. |
Loading