Commit 3772b055 authored by Stefan Behnel's avatar Stefan Behnel

use standard exclude patterns as overridable default in cystdlib.py

parent d7b716be
......@@ -87,7 +87,7 @@ def build_extensions(includes='**/*.py',
parallel=None):
if isinstance(includes, str):
includes = [includes]
excludes = list(excludes or ()) + exclude_patterns + broken
excludes = list(excludes or exclude_patterns) + broken
all_groups = (special_directives or []) + [(includes, {})]
extensions = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment