From ae0fa9e61e6993028cfd522f7687028f786c54b3 Mon Sep 17 00:00:00 2001 From: Brett Graham Date: Thu, 31 Oct 2024 11:19:32 -0400 Subject: [PATCH] include lib tests xml and db files in package data (#8935) --- changes/8935.general.rst | 1 + pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 changes/8935.general.rst diff --git a/changes/8935.general.rst b/changes/8935.general.rst new file mode 100644 index 0000000000..fe0b6a58e2 --- /dev/null +++ b/changes/8935.general.rst @@ -0,0 +1 @@ +Include xml and db test data as package data for lib tests. diff --git a/pyproject.toml b/pyproject.toml index 36bd029be8..489fea3c68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -157,7 +157,8 @@ namespaces = false ] "jwst.lib" = [ "tests/data/*.asdf", - "tests/data/*.db", + "tests/data/**/*.db", + "tests/data/**/*.xml", "tests/data/*.ecsv", "tests/data/*.fits", ]