From ea96900cc155c17912de92747b1d0da974cc61a4 Mon Sep 17 00:00:00 2001 From: "Justin B. Kinney" Date: Wed, 29 Jan 2025 14:10:46 -0500 Subject: [PATCH] Verified that tests on different python versions work --- logomaker/tests/functional_tests_logomaker.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/logomaker/tests/functional_tests_logomaker.py b/logomaker/tests/functional_tests_logomaker.py index 01acb9f..98cd9cb 100644 --- a/logomaker/tests/functional_tests_logomaker.py +++ b/logomaker/tests/functional_tests_logomaker.py @@ -729,9 +729,9 @@ def run_tests(): #test_demo() test_logomaker_get_data_methods() - # Trigger artificial failture for Python 3.8, just for testing purposes. - if sys.version_info.major == 3 and sys.version_info.minor < 9: - global_fail_counter += 1 + # # Trigger artificial failture for Python 3.8, just for testing purposes. + # if sys.version_info.major == 3 and sys.version_info.minor < 9: + # global_fail_counter += 1 if global_fail_counter > 0: raise LogomakerError(f'{global_fail_counter} tests failed. See above for details.')