summaryrefslogtreecommitdiffstats
path: root/pkg/gui/gui_test.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-04-06 18:20:34 +1000
committerJesse Duffield <jessedduffield@gmail.com>2021-04-06 19:34:32 +1000
commitc6825e3d0d4baca5fe4588a68002cbc648016f05 (patch)
treef39a23c1cd0065e4f85934ca7eef067de604fed0 /pkg/gui/gui_test.go
parent20bdba15f6298040fd426a5071b336b87866cc53 (diff)
skip some tests that are failing on CI for some reason
Diffstat (limited to 'pkg/gui/gui_test.go')
-rw-r--r--pkg/gui/gui_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/gui/gui_test.go b/pkg/gui/gui_test.go
index b44f04513..a54968849 100644
--- a/pkg/gui/gui_test.go
+++ b/pkg/gui/gui_test.go
@@ -39,6 +39,7 @@ func Test(t *testing.T) {
record := false
updateSnapshots := os.Getenv("UPDATE_SNAPSHOTS") != ""
speedEnv := os.Getenv("SPEED")
+ includeSkipped := os.Getenv("INCLUDE_SKIPPED") != ""
err := integration.RunTests(
t.Logf,
@@ -55,6 +56,7 @@ func Test(t *testing.T) {
func(t *testing.T, expected string, actual string) {
assert.Equal(t, expected, actual, fmt.Sprintf("expected:\n%s\nactual:\n%s\n", expected, actual))
},
+ includeSkipped,
)
assert.NoError(t, err)