Move issuegenerator to cmd so go mod tidy resolves dependencies (#1284)

Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
This commit is contained in:
Bogdan Drutu 2020-07-07 20:00:17 -07:00 committed by GitHub
parent 496174f379
commit aa67926c69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ commands:
steps: steps:
- run: - run:
name: Generate GitHub Issue name: Generate GitHub Issue
command: go run .circleci/reportgenerator/main.go ${TEST_RESULTS} command: go run cmd/issuegenerator/main.go ${TEST_RESULTS}
when: on_fail when: on_fail
workflows: workflows:

View File

@ -21,7 +21,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/bmizerany/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"go.opencensus.io/stats/view" "go.opencensus.io/stats/view"
"go.uber.org/zap" "go.uber.org/zap"