summaryrefslogtreecommitdiff
path: root/tools/preprocess_frozen_modules.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/preprocess_frozen_modules.py')
-rwxr-xr-xtools/preprocess_frozen_modules.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/preprocess_frozen_modules.py b/tools/preprocess_frozen_modules.py
index d157deeee..f2b59ffc0 100755
--- a/tools/preprocess_frozen_modules.py
+++ b/tools/preprocess_frozen_modules.py
@@ -33,7 +33,7 @@ def copy_and_process(in_dir, out_dir):
for root, subdirs, files in os.walk(in_dir):
# Skip library examples directories.
- if Path(root).name in ['examples', 'docs']:
+ if Path(root).name in ['examples', 'tests', 'docs']:
continue
for file in files: