Ticket #17393: 17393.patch

File 17393.patch, 491 bytes (added by Ian Clelland, 12 years ago)

Quick patch to exclude bytecode cache dirs

  • tests/runtests.py

     
    5454            if (f.startswith('__init__') or
    5555                f.startswith('.') or
    5656                f.startswith('sql') or
     57                f.startswith('__pycache__') or
    5758                os.path.basename(f) in REGRESSION_SUBDIRS_TO_SKIP):
    5859                continue
    5960            modules.append((loc, f))
Back to Top