From 82bfd8e66e0ec220612a2b3e101c5c676035a2c5 Mon Sep 17 00:00:00 2001 From: Norwid Behrnd Date: Tue, 12 Nov 2024 17:54:15 +0100 Subject: [PATCH] test(pytest.ini): correct a functional typo Because it is `markers` and not `Markers`, the earlier version caused `pytest` to issue a warning. Signed-off-by: Norwid Behrnd --- pytest.ini | 2 +- test_generator.org | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pytest.ini b/pytest.ini index 8f466c6..1bd280b 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,5 +1,5 @@ [pytest] -Markers = +markers = default: appendfilename's default string insertions prepend: appendfilename's optional -p/--prepend flag smart: appendfilename's optional --smart-prepend flag diff --git a/test_generator.org b/test_generator.org index 282aac6..fc94086 100755 --- a/test_generator.org +++ b/test_generator.org @@ -140,7 +140,7 @@ pytest-3 test_appendfilename.py -m "default and prepend" -v #+begin_src shell :tangle pytest.ini [pytest] -Markers = +markers = default: appendfilename's default string insertions prepend: appendfilename's optional -p/--prepend flag smart: appendfilename's optional --smart-prepend flag