From 9ab124836e1c602e8284a72a3ee1c0b60ed212f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 17 Dec 2024 05:16:21 +0100 Subject: [PATCH] Include missing *.vcf test files in sdist Otherwise tests fail: ``` ====================================================================== ERROR: test_radicale_1587 (tests.TestCompatibility) ---------------------------------------------------------------------- Traceback (most recent call last): File "/tmp/portage/dev-python/vobject-0.9.9/work/vobject-0.9.9/tests.py", line 1026, in test_radicale_1587 vcf_str = get_test_file("radicale-1587.vcf") File "/tmp/portage/dev-python/vobject-0.9.9/work/vobject-0.9.9/tests.py", line 43, in get_test_file f = open(filepath, 'r', encoding='utf-8') FileNotFoundError: [Errno 2] No such file or directory: 'test_files/radicale-1587.vcf' ---------------------------------------------------------------------- ``` --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 46e6184..9457e7f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ include README.md ACKNOWLEDGEMENTS.txt LICENSE-2.0.txt tests.py -recursive-include test_files *.ics +recursive-include test_files *.ics *.vcf