Skip to content
Snippets Groups Projects
Verified Commit c2f88d1b authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

feat: #1

parent 190b3f51
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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"`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment