Skip to content

Commit d7d336a

Browse files
committed
test: skip heatmap/nades tests
1 parent dfd6dcf commit d7d336a

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

examples/heatmap/heatmap_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99

1010
// Just make sure the example runs
1111
func TestHeatmap(t *testing.T) {
12-
if testing.Short() {
13-
t.Skip("skipping test")
14-
}
12+
// if testing.Short() {
13+
t.Skip("skipping test")
14+
// }
1515

1616
os.Args = []string{"cmd", "-demo", "../../test/cs-demos/default.dem"}
1717

examples/map_metadata_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import (
99
)
1010

1111
func TestGetMapMetadata(t *testing.T) {
12+
t.Skip()
13+
1214
meta := examples.GetMapMetadata("de_cache", 1901448379)
1315

1416
assert.Equal(t, examples.Map{

examples/nade-trajectories/nade_trajectories_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99

1010
// Just make sure the example runs
1111
func TestBouncyNades(t *testing.T) {
12-
if testing.Short() {
13-
t.Skip("skipping test")
14-
}
12+
// if testing.Short() {
13+
t.Skip("skipping test")
14+
// }
1515

1616
os.Args = []string{"cmd", "-demo", "../../test/cs-demos/default.dem"}
1717

0 commit comments

Comments
 (0)