From ccf3671ed1bdc79dc39e2a812fa75e9fe2de7055 Mon Sep 17 00:00:00 2001 From: William Jamieson Date: Mon, 30 Oct 2023 11:58:28 -0400 Subject: [PATCH] Bugfix webbpsf marker (#961) --- pyproject.toml | 1 + pytest_plugin/__init__.py | 0 conftest.py => pytest_plugin/webbpsf_plugin.py | 0 3 files changed, 1 insertion(+) create mode 100644 pytest_plugin/__init__.py rename conftest.py => pytest_plugin/webbpsf_plugin.py (100%) diff --git a/pyproject.toml b/pyproject.toml index 05d908ccb..57e75195e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,6 +70,7 @@ dev = [ [project.entry-points] 'stpipe.steps' = { romancal = 'romancal.stpipe.integration:get_steps' } +pytest11 = {webbpsf = 'pytest_plugin.webbpsf_plugin'} [project.scripts] okify_regtests = 'romancal.scripts.okify_regtests:main' diff --git a/pytest_plugin/__init__.py b/pytest_plugin/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/conftest.py b/pytest_plugin/webbpsf_plugin.py similarity index 100% rename from conftest.py rename to pytest_plugin/webbpsf_plugin.py