Fix(clan_cli): filter tests files from source

This commit is contained in:
Johannes Kirschbauer
2025-05-28 11:02:14 +02:00
parent 84622222d8
commit 3e160d6392

View File

@@ -83,7 +83,9 @@ let
include = [
(
_root: path: _type:
(builtins.match "test_.*\.py" path) == null
(builtins.match ".*/test_[^/]+\.py" path) == null
&& (builtins.match ".*/[^/]+_test\.py" path) == null
# && (builtins.match ".*/tests/.+" path) == null
)
];
}