From 122babfa23acb86c903350fe656daa9698905078 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Thu, 18 Feb 2021 15:46:58 +0100 Subject: [PATCH] Define pytest marks (#161) * Define pytest marks This is to avoid a WARNING, tests/test_versions.py:7 /home/travis/build/readthedocs/readthedocs-docker-images/tests/test_versions.py:7: PytestUnknownMarkWarning: Unknown pytest.mark.image_master - is this a typo? You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/mark.html @pytest.mark.image_master * Update pytest.ini Co-authored-by: Santos Gallegos Co-authored-by: Santos Gallegos --- pytest.ini | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..679b367 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,7 @@ +[pytest] +addopts = --strict-markers +markers = + image_master + image_70 + image_60 + image_50