Skip to content

Commit

Permalink
remove more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Laubi committed Feb 3, 2025
1 parent 4a8cbad commit c2376e6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
5 changes: 0 additions & 5 deletions .ci/nightly.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ pipeline {
}
}

stage("🧓 Integration test (legacy)") {
steps {
executeWithSecrets(cmd: 'make integration-test-v1')
}
}

stage("📥/📤 Download/Restore test") {
steps {
Expand Down
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ BINARY_NAME ?= monaco
VERSION ?= 2.x
RELEASES = $(BINARY_NAME)-windows-amd64.exe $(BINARY_NAME)-windows-386.exe $(BINARY_NAME)-linux-arm64 $(BINARY_NAME)-linux-amd64 $(BINARY_NAME)-linux-386 $(BINARY_NAME)-darwin-amd64 $(BINARY_NAME)-darwin-arm64

.PHONY: lint format mocks build install clean test integration-test integration-test-v1 test-package default add-license-headers compile build-release $(RELEASES) docker-container sign-image install-ko
.PHONY: lint format mocks build install clean test integration-test test-package default add-license-headers compile build-release $(RELEASES) docker-container sign-image install-ko

default: build

Expand Down Expand Up @@ -95,9 +95,6 @@ test: mocks install-gotestsum
integration-test: mocks install-gotestsum
@gotestsum ${testopts} --format testdox -- -tags=integration -timeout=30m -v -race ./cmd/monaco/integrationtest/v2

integration-test-v1: mocks install-gotestsum
@gotestsum ${testopts} --format testdox -- -tags=integration_v1 -timeout=30m -v -race ./cmd/monaco/integrationtest/v1

download-restore-test: mocks install-gotestsum
@gotestsum ${testopts} --format testdox -- -tags=download_restore -timeout=30m -v -race ./...

Expand Down
10 changes: 6 additions & 4 deletions internal/log/log_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@ import (
"bytes"
"context"
"encoding/json"
"os"
"testing"

"github.com/spf13/afero"
"github.com/stretchr/testify/assert"

"github.com/dynatrace/dynatrace-configuration-as-code/v2/internal/log/field"
"github.com/dynatrace/dynatrace-configuration-as-code/v2/internal/loggers"
"github.com/dynatrace/dynatrace-configuration-as-code/v2/internal/testutils"
"github.com/dynatrace/dynatrace-configuration-as-code/v2/pkg/config/coordinate"
"github.com/spf13/afero"
"github.com/stretchr/testify/assert"
"os"
"testing"
)

func TestPrepareLogging(t *testing.T) {
Expand Down

0 comments on commit c2376e6

Please sign in to comment.