We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fc77c9 commit d2d4c13Copy full SHA for d2d4c13
tests/test_examples.py
@@ -41,8 +41,9 @@ def check_example(package, filename):
41
with TempDirectory() as actual:
42
# copy files to the directory
43
copy(path.join(example_dir, filename), actual.path)
44
- for xls in glob(path.join(example_dir, '*.xls')):
45
- copy(xls, actual.path)
+ for pattern in ('*.xls', '*.bmp'):
+ for fixture in glob(path.join(example_dir, pattern)):
46
+ copy(fixture, actual.path)
47
48
os.chdir(actual.path)
49
output = TemporaryFile('w+')
0 commit comments