diff --git a/main.go b/main.go index 9e01a4c..1f6e247 100644 --- a/main.go +++ b/main.go @@ -49,7 +49,7 @@ func init() { log.Fatalf("Can't get working directory") } - version, err = semver.NewVersion("0.1.4-pre") + version, err = semver.NewVersion("0.1.4") if err != nil { fmt.Println(err.Error()) } diff --git a/pixelcanvas.io_test.go b/pixelcanvas.io_test.go index 4d24746..babe189 100644 --- a/pixelcanvas.io_test.go +++ b/pixelcanvas.io_test.go @@ -43,6 +43,11 @@ func saveCanvasImage(can *canvas, rect image.Rectangle, filename string) error { } func Test_newPixelcanvasio(t *testing.T) { + + if os.Getenv("CI") == "true" { + t.Skip("Skipping testing in CI environment") + } + con, can := newPixelcanvasio() defer con.Close()