We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a9f3aa commit 3787f06Copy full SHA for 3787f06
.github/workflows/ci.yaml
@@ -899,7 +899,8 @@ jobs:
899
result_artifacts = list(Path("test-go-pg_result").glob("test-go-pg_result_*"))
900
results = {f.name: int(f.read_text()) for f in result_artifacts}
901
del results["test-go-pg_result_windows-2022"]
902
- if sum(results.values()) == 0:
+ # We should have received 3 result artifacts: linux, macos, and windows
903
+ if len(result_artifacts) == 3 and sum(results.values()) == 0:
904
print("test-go-pg on windows-2022 failed, but we are temporarily skipping it until it's fixed")
905
continue
906
0 commit comments