Browse Source

Use parameters for parametrized test

Instead of hardcoded values…
pull/300/head
Glandos 8 years ago committed by GitHub
parent
commit
93f51e3e56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      tests/test_compress_assets_plugin.py

4
tests/test_compress_assets_plugin.py

@ -51,12 +51,12 @@ def make_gallery(settings, tmpdir, method):
def test_compress(settings, tmpdir, method, compress_suffix, test_import):
if test_import:
pytest.importorskip(test_import)
compress_options = make_gallery(settings, tmpdir, 'gzip')
compress_options = make_gallery(settings, tmpdir, method)
suffixes = compress_options['suffixes']
for path, dirs, files in os.walk(settings['destination']):
for file in files:
path_exists = os.path.exists('{}.{}'.format(os.path.join(path, file), 'gz'))
path_exists = os.path.exists('{}.{}'.format(os.path.join(path, file), compress_suffix))
file_ext = os.path.splitext(file)[1][1:]
assert path_exists if file_ext in suffixes else not path_exists

Loading…
Cancel
Save