diff --git a/tests/test_performance.py b/tests/test_performance.py index 6a105b8..451343a 100644 --- a/tests/test_performance.py +++ b/tests/test_performance.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import print_function import time import pytest @@ -24,7 +25,7 @@ def test_performance_metadata(): p.size elapse2 = time.clock() - st - assert elapse1 >= elapse2 + print("filetool use %s, but pathlib_mate use %s." % (elapse1, elapse2)) if __name__ == "__main__":