X-Git-Url: http://users.mur.at/ms/git/gitweb/?a=blobdiff_plain;f=aces_1.0.0%2Fpython%2Faces_ocio%2Ftests%2Ftests_aces_config.py;h=f41349e6a788eea512555eb6125272b7dfe9da7a;hb=24460c4f42d9e44101d414ef15579e5f7d250bb7;hp=61acfa5df282fb806c33e104e7011ae4d8701cc5;hpb=4f72f58a00847daade7c7edbba95c70d95b3e4ec;p=OpenColorIO-Configs.git diff --git a/aces_1.0.0/python/aces_ocio/tests/tests_aces_config.py b/aces_1.0.0/python/aces_ocio/tests/tests_aces_config.py index 61acfa5..f41349e 100644 --- a/aces_1.0.0/python/aces_ocio/tests/tests_aces_config.py +++ b/aces_1.0.0/python/aces_ocio/tests/tests_aces_config.py @@ -5,16 +5,12 @@ Defines unit tests for *ACES* configuration. """ +from __future__ import division + import hashlib import os import re import shutil -import sys - -# TODO: Temporary ugly thing to be discussed, ideally the package should be -# in PYTHONPATH. -sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..')) - import tempfile import unittest @@ -39,7 +35,7 @@ __all__ = ['REFERENCE_CONFIG_ROOT_DIRECTORY', # TODO: Investigate how the current config has been generated to use it for # tests. # REFERENCE_CONFIG_ROOT_DIRECTORY = os.path.abspath( -# os.path.join(os.path.dirname(__file__), '..', '..', '..')) +# os.path.join(os.path.dirname(__file__), '..', '..', '..')) REFERENCE_CONFIG_ROOT_DIRECTORY = '/colour-science/colour-ramblings/ocio/aces' HASH_TEST_PATTERNS = ('\.3dl', '\.lut', '\.csp') @@ -105,11 +101,12 @@ class TestACESConfig(unittest.TestCase): hashes = {} for path in files_walker(directory, filters_in=filters_in, - filters_out=filters_out): + filters_out=filters_out, + flags=flags): with open(path) as file: - hash = hashlib.md5( + digest = hashlib.md5( re.sub('\s', '', file.read())).hexdigest() - hashes[path.replace(directory, '')] = hash + hashes[path.replace(directory, '')] = digest return hashes def test_ACES_config(self):