diff --git a/devenv.nix b/devenv.nix
index 78bebff27041e7e638d574f76346b52516d4a435..4a6a2525c3cb66b28cf658f2c310ee1c12ab377d 100644
--- a/devenv.nix
+++ b/devenv.nix
@@ -132,6 +132,8 @@ EOF
     #!${pkgs.bash}/bin/bash
     #set -euo pipefail
     set -x
+    
+    export TEST_BY_TASK=true
 
     PATH="''${PATH}":${pkgs.coreutils}/bin
     PATH="''${PATH}":${pkgs.findutils}/bin
diff --git a/issue-1_test.go b/issue-1_test.go
index 41c0743c86769c07fcf5f64aa4e6a96ea112a782..63578ba3c92c512a9c3df3ad2e41ab3992afe084 100644
--- a/issue-1_test.go
+++ b/issue-1_test.go
@@ -3,6 +3,7 @@ package jobqueue
 import (
 	"github.com/robfig/cron/v3"
 	"github.com/stretchr/testify/assert"
+	"os"
 	"strings"
 	"testing"
 	"time"
@@ -10,6 +11,11 @@ import (
 
 func TestRoundTrip(t *testing.T) {
 
+	if os.Getenv("TEST_BY_TASK") != "" {
+		t.Skip("Skipping test because CI_SERVER is set")
+		// TODO: run this test in CI
+	}
+
 	// type JobImport struct {
 	//	ID           string          `yaml:"id" json:"id"`
 	//	Priority     int             `yaml:"priority" json:"priority"`