Mercurial > repos > iuc > pygenometracks
comparison test-data/compare_images.py @ 8:4ac4e7083b7e draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/pygenometracks commit 3bfe22506f7d9922ac885ef6a6fbe8f96c83ed14"
| author | iuc |
|---|---|
| date | Tue, 21 Jul 2020 03:32:48 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 7:326a3db8d9d1 | 8:4ac4e7083b7e |
|---|---|
| 1 import os | |
| 2 | |
| 3 from matplotlib.testing.compare import compare_images | |
| 4 | |
| 5 pngs = [f for f in os.listdir('test-data') if f.endswith('.png')] | |
| 6 | |
| 7 for png in pngs: | |
| 8 print(png) | |
| 9 res = compare_images(os.path.join('test-data', png), | |
| 10 os.path.join('outputs', png), | |
| 11 17) | |
| 12 print(res) |
