diff --git a/tests/test_samples.py b/tests/test_samples.py index def1084..39b3288 100644 --- a/tests/test_samples.py +++ b/tests/test_samples.py @@ -10,7 +10,9 @@ # brew install python-tk def is_running_on_github_actions(): - return os.getenv('GITHUB_ACTIONS') == 'true' + github = os.getenv('GITHUB_ACTIONS') + print(f'github: {github}') + return github == 'true' def test_tkinter_gui(): if is_running_on_github_actions(): return