Skip to content

Commit

Permalink
. t cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
isidore committed Nov 11, 2023
1 parent eeef50e commit a9487c1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/test_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@
# brew install python-tk

def is_running_on_github_actions():
for key, value in os.environ.items():
print(f'{key}: {value}')
github = os.getenv('CI')
print(f'github: {github}')
return github == 'true'
return os.getenv('CI') == 'true'
def test_tkinter_gui():
if is_running_on_github_actions():
return
Expand Down

0 comments on commit a9487c1

Please sign in to comment.