From 78547e34fa8b91170fdb852e2b8ffdac881a25f2 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Tue, 18 Oct 2022 08:59:14 +0200 Subject: [PATCH] Move conftest to top-level This fixes the following error: ________________________ ERROR collecting test session _________________________ Defining 'pytest_plugins' in a non-top-level conftest is no longer supported: It affects the entire test suite instead of just below the conftest as expected. /build/pytest-steps-1.8.0/pytest_steps/conftest.py Please move it to a top level conftest file at the rootdir: /build/pytest-steps-1.8.0 For more information, visit: https://docs.pytest.org/en/stable/deprecations.html#pytest-plugins-in-non-top-level-conftest-files --- pytest_steps/tests/conftest.py => conftest.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pytest_steps/tests/conftest.py => conftest.py (100%) diff --git a/pytest_steps/tests/conftest.py b/conftest.py similarity index 100% rename from pytest_steps/tests/conftest.py rename to conftest.py