Skip to content
Merged
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
2 changes: 1 addition & 1 deletion doc/leios_tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ On a failed testrun the workflow runs the analysis automatically and surfaces it

* the **run summary** of the workflow run, and a foldable `Preliminary failure analysis`
group in the log of the `Read failure analysis into env` step,
* `failure_analysis.md` in the **`testrun-files`** artifact.
* `failure_analysis.md` in the `testrun-files` artifact.

## Known Failures

Expand Down
11 changes: 5 additions & 6 deletions src_docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@
mockdir = Path(__file__).parent / "mocks"
os.environ["PATH"] = f"{mockdir}:{os.environ['PATH']}"


import cardano_node_tests

# -- Path setup --------------------------------------------------------------

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath("..")) # noqa: PTH100
# add these directories to sys.path here. Prepend the repo root so that the
# checkout this doc is built from wins over any installed (e.g. editable)
# version of the package. Must happen before `cardano_node_tests` is imported.
sys.path.insert(0, str(Path(__file__).parents[2]))

import cardano_node_tests

# -- Project information -----------------------------------------------------

Expand Down
Loading