aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/watch_dirs.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-01-26 08:44:00 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-01-27 13:07:24 -0800
commite68de0e4c91fa9281082193d9bffbe9319e6aecc (patch)
treec60fcaa8ac4d745ae16f051e2ae3ae248e841271 /tools/run_tests/watch_dirs.py
parent79d9a990ff89fd12821a2c88631e194c8da4342d (diff)
Small tweaks
Run faster on smaller machines. Don't watch '.' prefixed files for changes. These files don't typically contribute to builds, and are used as vim temp files.
Diffstat (limited to 'tools/run_tests/watch_dirs.py')
-rwxr-xr-xtools/run_tests/watch_dirs.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/run_tests/watch_dirs.py b/tools/run_tests/watch_dirs.py
index 9ef6924454..f83192e5f8 100755
--- a/tools/run_tests/watch_dirs.py
+++ b/tools/run_tests/watch_dirs.py
@@ -25,6 +25,7 @@ class DirWatcher(object):
continue
for root, _, files in os.walk(path):
for f in files:
+ if f and f[0] == '.': continue
try:
st = os.stat(os.path.join(root, f))
except OSError as e: