From b1f290d8e44466e7bbb6c7d073ad348fc2231f24 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 4 Feb 2022 08:49:16 -0500 Subject: [PATCH] Ship the schema in the package so the tests can read it It is more obvious that this is *easy* than that it makes complete sense... --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 17a5fdd..cb754b8 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,6 @@ def get_version(): setup( version=get_version(), package_data={ - "": ["testing-signing.key"], + "": ["backup-recovery.yaml", "testing-signing.key"], }, ) -- GitLab