forked from confluentinc/ducktape
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into cdt-vtools-2043-report-cmd-line
- Loading branch information
Showing
46 changed files
with
751 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,6 +97,7 @@ venv/ | |
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
.virtualenvs/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
build: | ||
os: ubuntu-20.04 | ||
tools: | ||
python: "3.7" | ||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
python: | ||
install: | ||
- requirements: docs/requirements.txt | ||
- method: setuptools | ||
path: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,35 @@ | ||
Ducktape documentation quick start guide | ||
======================================== | ||
|
||
This file provides a quick guide on how to compile the Ducktape documentation. | ||
|
||
Build the documentation | ||
----------------------- | ||
|
||
Setup the environment | ||
--------------------- | ||
To render the pages run:: | ||
```shell | ||
tox -e docs | ||
``` | ||
|
||
The rendered pages will be in ``docs/_build/html`` | ||
|
||
To compile the documentation you need Sphinx Python library. To install it and all its dependencies run:: | ||
|
||
pip install -r requirements.txt | ||
Specify documentation format | ||
---------------------------- | ||
|
||
Documentation is built using [sphinx-build](https://www.sphinx-doc.org/en/master/man/sphinx-build.html) command. | ||
You can select which builder to use using SPHINX_BUILDER command: | ||
```shell | ||
SPHINX_BUILDER=man tox -e docs | ||
``` | ||
All available values: https://www.sphinx-doc.org/en/master/man/sphinx-build.html#cmdoption-sphinx-build-M | ||
|
||
Build the documentation | ||
----------------------- | ||
|
||
To render the pages run:: | ||
Pass options to sphinx-build | ||
---------------------------- | ||
Any argument after `--` will be passed to the | ||
[sphinx-build](https://www.sphinx-doc.org/en/master/man/sphinx-build.html) command directly: | ||
```shell | ||
tox -e docs -- -E | ||
``` | ||
|
||
make html | ||
|
||
The rendered pages will be in ``docs/_build/html`` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.. _topics-changelog: | ||
|
||
==== | ||
Changelog | ||
==== | ||
|
||
0.8.18 | ||
====== | ||
Friday, August 18th, 2023 | ||
------------------------- | ||
- | ||
|
||
0.8.18 | ||
====== | ||
- Updated `requests` version to `2.31.0` | ||
|
||
0.8.17 | ||
====== | ||
- Removed `tox` from requirements. It was not used, but was breaking our builds due to recent pushes to `virtualenv`. | ||
|
||
0.8.x | ||
===== | ||
- Support test suites | ||
- Easier way to rerun failed tests - generate test suite with all the failed tests and also print them in the log so that user can copy them and paste as ducktape command line arguments | ||
- Python 2 is no longer supported, minimum supported version is 3.6 | ||
- Added `--deflake N` flag - if provided, it will attempt to rerun each failed test up to N times, and if it eventually passes, it will be marked as Flaky - `#299 <https://github.com/confluentinc/ducktape/pull/299>`_ | ||
- [backport, also in 0.9.1] - use a generic network device based on the devices found on the remote machine rather than a hardcoded one - `#314 <https://github.com/confluentinc/ducktape/pull/314>`_ and `#328 <https://github.com/confluentinc/ducktape/pull/328>`_ | ||
- [backport, also in 0.9.1] - clean up process properly after an exception during test runner execution - `#323 <https://github.com/confluentinc/ducktape/pull/323>`_ | ||
- [backport, also in 0.9.1] - log ssh errors - `#319 <https://github.com/confluentinc/ducktape/pull/319>`_ | ||
- [backport, also in 0.9.1] - update vagrant tests to use ubuntu20 - `#328 <https://github.com/confluentinc/ducktape/pull/328>`_ | ||
- [backport, also in 0.9.1] - added command to print the total number of nodes the tests run will require - `#320 <https://github.com/confluentinc/ducktape/pull/320>`_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
Sphinx==1.5.3 | ||
Sphinx<1.7 | ||
sphinx-argparse==0.1.17 | ||
sphinx-rtd-theme==0.2.4 | ||
boto3==1.15.9 | ||
pycryptodome==3.9.8 | ||
pywinrm==0.2.2 | ||
jinja2==2.11.2 | ||
MarkupSafe<2.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.8.8' | ||
__version__ = '0.8.18' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.