We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 561c6f1 commit ba5a5a4Copy full SHA for ba5a5a4
1 file changed
client/src/cbltest/utils.py
@@ -46,10 +46,10 @@ def verify_lfs_checkout() -> None:
46
"""
47
This function is used to verify that the LFS files are being properly checked out.
48
49
- if os.name == "nt":
50
- # This check, for whatever reason, is entirely unreliable on Windows. The command itself returns
51
- # what I expect, but the checkout field is always false when invoking from python,
52
- # even when the files are properly checked out
+ if os.name == "nt" or sys.platform.startswith("linux")
+ # This check, for whatever reason, is entirely unreliable on Windows and linux.
+ # The command itself returns what I expect, but the checkout field is always false
+ # when invoking from python, even when the files are properly checked out
53
return
54
55
try:
0 commit comments