Skip to content

Commit 9cad8d3

Browse files
committedJan 8, 2025·
images: Rework the golden tests
1 parent cfa0801 commit 9cad8d3

File tree

130 files changed

+332
-324
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+332
-324
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
imports.*
44
dist/
55
public/
6+
.DS_Store

‎htesting/test_helpers.go

+5
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,11 @@ func IsCI() bool {
110110
return (os.Getenv("CI") != "" || os.Getenv("CI_LOCAL") != "") && os.Getenv("CIRCLE_BRANCH") == ""
111111
}
112112

113+
// IsRealCI reports whether we're running in a CI server, but not in a local CI setup.
114+
func IsRealCI() bool {
115+
return IsCI() && os.Getenv("CI_LOCAL") == ""
116+
}
117+
113118
// IsGitHubAction reports whether we're running in a GitHub Action.
114119
func IsGitHubAction() bool {
115120
return os.Getenv("GITHUB_ACTION") != ""

0 commit comments

Comments
 (0)
Please sign in to comment.