summaryrefslogtreecommitdiff
path: root/tools/preprocess_frozen_modules.py
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-10-05 12:00:05 -0700
committerScott Shawcroft <scott@tannewt.org>2018-10-05 15:14:34 -0700
commit623f8d3b8c14fd924e31b2b1b044b513c0b1ee3c (patch)
tree08be94388e459936564f8c19e4db5100d9c1fd52 /tools/preprocess_frozen_modules.py
parent76008ce304e09394733a10d56b944218b41630ca (diff)
Don't freeze the tests directory
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..bb6959f0d 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', 'docs', 'tests']:
continue
for file in files: