From ee4ac9d7b03fbb7b2fe6f45eeac7dc7ec7702600 Mon Sep 17 00:00:00 2001 From: RhodeCode Admin Date: Thu, 11 May 2023 11:58:21 +0200 Subject: [PATCH] tests: move conftests to top level for better pytest test collection --- rhodecode/conftest.py => conftest.py | 1 + 1 file changed, 1 insertion(+) rename rhodecode/conftest.py => conftest.py (99%) diff --git a/rhodecode/conftest.py b/conftest.py similarity index 99% rename from rhodecode/conftest.py rename to conftest.py index 2689f072..ce2dd508 100644 --- a/rhodecode/conftest.py +++ b/conftest.py @@ -43,6 +43,7 @@ def pytest_addoption(parser): parser.addoption( '--keep-tmp-path', action='store_true', help="Keep the test temporary directories") + parser.addoption( '--backends', action='store', type=_split_comma, default=['git', 'hg', 'svn'],