Files
openfe/openfecli/tests/conftest.py
Alyssa Travitz 036869ae81 Ci/add ruff format part4 - the final format! (#1623)
* format cli tests top level

* format cli commands tests

* format cli parameters tests
2025-10-24 23:50:52 +00:00

9 lines
156 B
Python

import urllib.request
try:
urllib.request.urlopen("https://www.google.com")
except: # -no-cov-
HAS_INTERNET = False
else:
HAS_INTERNET = True