From 95ddf5803af99eeaba0efa5fb022ab8229afbf09 Mon Sep 17 00:00:00 2001 From: James Knight Date: Sat, 5 Oct 2024 11:43:50 -0400 Subject: [PATCH] tests-sample-markdown: adding sample set Signed-off-by: James Knight --- tests/sample-sets/markdown-myst/conf.py | 4 ++++ tests/sample-sets/markdown-myst/index.md | 7 +++++++ tests/sample-sets/markdown-myst/tox.ini | 13 +++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 tests/sample-sets/markdown-myst/conf.py create mode 100644 tests/sample-sets/markdown-myst/index.md create mode 100644 tests/sample-sets/markdown-myst/tox.ini diff --git a/tests/sample-sets/markdown-myst/conf.py b/tests/sample-sets/markdown-myst/conf.py new file mode 100644 index 00000000..2f2cc1cd --- /dev/null +++ b/tests/sample-sets/markdown-myst/conf.py @@ -0,0 +1,4 @@ +extensions = [ + 'myst_parser', + 'sphinxcontrib.confluencebuilder', +] diff --git a/tests/sample-sets/markdown-myst/index.md b/tests/sample-sets/markdown-myst/index.md new file mode 100644 index 00000000..84a82ffb --- /dev/null +++ b/tests/sample-sets/markdown-myst/index.md @@ -0,0 +1,7 @@ +# Test + +## Nested + +PATH to be explained \ +PYTHONPATH to be explained \ +GRUB to be explained diff --git a/tests/sample-sets/markdown-myst/tox.ini b/tests/sample-sets/markdown-myst/tox.ini new file mode 100644 index 00000000..a52ded14 --- /dev/null +++ b/tests/sample-sets/markdown-myst/tox.ini @@ -0,0 +1,13 @@ +[tox] +package_root={toxinidir}{/}..{/}..{/}.. + +[testenv] +deps = + myst-parser +commands = + {envpython} -m tests.test_sample {posargs} +setenv = + PYTHONDONTWRITEBYTECODE=1 + TOX_INI_DIR={toxinidir} +passenv = * +use_develop = true