Skip to content

Commit

Permalink
Verified that tests on different python versions work
Browse files Browse the repository at this point in the history
  • Loading branch information
jbkinney committed Jan 29, 2025
1 parent 83e4a4b commit ea96900
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions logomaker/tests/functional_tests_logomaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.')
Expand Down

0 comments on commit ea96900

Please sign in to comment.