summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Williams <neil.williams@linaro.org>2015-09-08 08:42:52 +0100
committerNeil Williams <neil.williams@linaro.org>2015-09-08 08:44:16 +0100
commit0c0102cee7e9c7774a2e60346a4857f536cf54ca (patch)
tree0de735d50df8da3163ae12d4b0508ce9bf1158cd
parent5a1f48f6cc6970b0c636f58dff13d7bc3dfe1581 (diff)
Exclude hacking session example YAML files
Change-Id: I2bc614514e084666d52f10ca96f12ad990c47040
-rw-r--r--lava-job-runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lava-job-runner.py b/lava-job-runner.py
index f2b454d..ffd7f8a 100644
--- a/lava-job-runner.py
+++ b/lava-job-runner.py
@@ -184,7 +184,7 @@ def load_pipeline_jobs():
top = os.path.join(os.getcwd(), 'refactoring')
for root, _, filenames in os.walk(top):
for filename in fnmatch.filter(filenames, '*.yaml'):
- if 'device' in root:
+ if 'device' in root or 'hacking' in root:
continue
yaml_map[os.path.join(root, filename)] = None