Hardcode exception for __pycache___

Jonathan Frederic 12 years ago
parent 94a7a7fd3a
commit 60c035f874

@ -169,7 +169,7 @@ def all_js_groups():
import glob
test_dir = get_js_test_dir()
all_subdirs = glob.glob(test_dir + '*/')
return [js_prefix+os.path.relpath(x, test_dir) for x in all_subdirs]
return [js_prefix+os.path.relpath(x, test_dir) for x in all_subdirs if os.path.relpath(x, test_dir) != '__pycache__']
class JSController(TestController):
"""Run CasperJS tests """

Loading…
Cancel
Save