mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Fix the -x flag so that is does work.
This commit is contained in:
parent
de2d78a153
commit
261b136321
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ def main(*packages):
|
||||||
elif flag == "-u":
|
elif flag == "-u":
|
||||||
use_resources.extend(value.split(","))
|
use_resources.extend(value.split(","))
|
||||||
elif flag == "-x":
|
elif flag == "-x":
|
||||||
exclude.append(value.split(","))
|
exclude.extend(value.split(","))
|
||||||
|
|
||||||
mask = "test_*.py"
|
mask = "test_*.py"
|
||||||
if args:
|
if args:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue