Commit fa39e4a6e6030666293047c46d5954b4baee2296
1 parent
d18f51c3
ooxml: ignore zip files when testing samples
Showing
1 changed file
with
1 additions
and
1 deletions
tests/ooxml/test_basic.py
| ... | ... | @@ -39,7 +39,7 @@ class TestOOXML(unittest.TestCase): |
| 39 | 39 | |
| 40 | 40 | # files that are neither OLE nor xml: |
| 41 | 41 | except_files = 'empty', 'text' |
| 42 | - except_extns = 'rtf', 'csv' | |
| 42 | + except_extns = 'rtf', 'csv', 'zip' | |
| 43 | 43 | |
| 44 | 44 | # analyse all files in data dir |
| 45 | 45 | for base_dir, _, files in os.walk(DATA_BASE_DIR): | ... | ... |