Skip to content

Commit

Permalink
. t logging
Browse files Browse the repository at this point in the history
  • Loading branch information
isidore committed Nov 11, 2023
1 parent 54a4851 commit 033489c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 033489c

Please sign in to comment.