summaryrefslogtreecommitdiff
blob: 9be2392557b1db2bb5fe7d2f7acb6c0f7076eee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/tests/test_cli.py b/tests/test_cli.py
index e5a7f93..de132db 100644
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -15,6 +15,10 @@ import pytest
 import click
 import kaptan
 from click.testing import CliRunner
+
+import sys
+import pathlib
+sys.path.extend([str(p) for p in pathlib.Path(__file__, '..', 'fixtures/pluginsystem/plugins').resolve().iterdir() if p.is_dir()])
 from tmuxp_test_plugin_bwb.plugin import PluginBeforeWorkspaceBuilder
 
 import libtmux