From 5804085a0fc4f32a3646d8521ada4abc91a736f1 Mon Sep 17 00:00:00 2001 From: Justin Date: Wed, 21 Feb 2024 13:32:52 -0500 Subject: [PATCH] fix: change tests to test in spec file --- dist-scripts/pyinstaller/massdash.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist-scripts/pyinstaller/massdash.spec b/dist-scripts/pyinstaller/massdash.spec index 30fd2600..275b3777 100644 --- a/dist-scripts/pyinstaller/massdash.spec +++ b/dist-scripts/pyinstaller/massdash.spec @@ -69,7 +69,7 @@ while requirements: if remove_tests: hidden_imports = sorted( - [h for h in hidden_imports if "tests" not in h.split(".")] + [h for h in hidden_imports if "test" not in h.split(".")] ) else: hidden_imports = sorted(hidden_imports)