File tree Expand file tree Collapse file tree 1 file changed +22
-12
lines changed Expand file tree Collapse file tree 1 file changed +22
-12
lines changed Original file line number Diff line number Diff line change @@ -6,28 +6,36 @@ Version: 0.0.9
6
6
7
7
We recommend to use [ pipx] ( https://pypa.github.io/pipx/ ) :
8
8
9
- pipx install beku-stackabletech
9
+ ``` sh
10
+ pipx install beku-stackabletech
11
+ ```
10
12
11
13
But you can also use ` pip ` :
12
14
13
- # from PyPI
14
- pip install beku-stackabletech
15
- # from GitHub
16
- pip install git+https://github.com/stackabletech/beku.py.git@master
15
+ ``` sh
16
+ # from PyPI
17
+ pip install beku-stackabletech
18
+ # from GitHub
19
+ pip install git+https://github.com/stackabletech/beku.py.git@master
20
+ ```
17
21
18
22
## Usage
19
23
20
- cd <stackable operator directory>
21
- rm -rf tests/_work && beku
22
- cd tests/_work && kubectl kuttl test
24
+ ``` sh
25
+ cd < stackable operator directory>
26
+ rm -rf tests/_work && beku
27
+ cd tests/_work && kubectl kuttl test
28
+ ```
23
29
24
30
Also see the ` examples ` folder.
25
31
26
32
## Description
27
33
28
34
Fast Kuttl tests expander for Stackable integration tests.
29
35
30
- beku -i tests/test-definition.yaml -t tests/templates/kuttl -k tests/kuttl-test.yaml.jinja2 -o tests/_work
36
+ ``` sh
37
+ beku -i tests/test-definition.yaml -t tests/templates/kuttl -k tests/kuttl-test.yaml.jinja2 -o tests/_work
38
+ ```
31
39
32
40
## Release a new version
33
41
@@ -41,6 +49,8 @@ Update the CHANGELOG.
41
49
Commit and tag.
42
50
Build and publish:
43
51
44
- rm -rf dist/
45
- python -m build --wheel .
46
- twine upload dist/*
52
+ ``` sh
53
+ rm -rf dist/
54
+ python -m build --wheel .
55
+ twine upload dist/*
56
+ ```
You can’t perform that action at this time.
0 commit comments