diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:23:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:23:03 +0000 |
commit | 71a07262f6f6dcd4d9654ce452a4c360a1a33d16 (patch) | |
tree | ca21a8f5f170fa7791fbdfe07eef36982d49341b /debian/rules | |
parent | Adding upstream version 0.18.1. (diff) | |
download | myst-parser-c127d28bb3a42692db8607f8e3fe45ac4b9a74bf.tar.xz myst-parser-c127d28bb3a42692db8607f8e3fe45ac4b9a74bf.zip |
Adding debian version 0.18.1-2.debian/0.18.1-2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..105968c --- /dev/null +++ b/debian/rules @@ -0,0 +1,35 @@ +#! /usr/bin/make -f + +export PYBUILD_NAME=myst-parser + +# ignore linkify tests until linkify is package in Debian #997970 +# Tests that use pytest_param_files also are ingnored. +# Tests that use sphinx_pytest are ignored +export PYBUILD_TEST_ARGS=-k 'not test_extended_syntaxes \ + and not test_html_to_nodes \ + and not test_html_ast \ + and not test_html_round_trip \ + and not test_basic \ + and not test_syntax_elements \ + and not test_docutils_roles \ + and not test_docutils_directives \ + and not test_syntax_extensions \ + and not test_syntax_elements \ + and not test_tables \ + and not test_directive_options \ + and not test_sphinx_directives \ + and not test_sphinx_roles \ + and not test_dollarmath \ + and not test_amsmath \ + and not test_containers \ + and not test_evalrst_elements \ + and not test_definition_lists \ + and not test_render \ + and not test_errors \ + and not test_cmdline' \ + --ignore=tests/test_renderers/test_fixtures_sphinx.py \ + --ignore=tests/test_renderers/test_myst_refs.py \ + --ignore=tests/test_sphinx/test_sphinx_builds.py + +%: + dh $@ --with python3 --buildsystem=pybuild |