move package test/ => integration/
This commit is contained in:
parent
026dafcfc9
commit
c6040dd514
6
.github/workflows/tests.yaml
vendored
6
.github/workflows/tests.yaml
vendored
@ -17,7 +17,7 @@ jobs:
|
||||
- name: "Build and run tests"
|
||||
run: |
|
||||
go install github.com/onsi/ginkgo/v2/ginkgo
|
||||
ginkgo -v -r --skipPackage=./test
|
||||
ginkgo -v -r --skipPackage=./integration
|
||||
|
||||
integration-test:
|
||||
name: "Run integration tests"
|
||||
@ -55,7 +55,7 @@ jobs:
|
||||
ETH_HTTP_PATH: "${{ env.ETH_HTTP_PATH }}"
|
||||
run: |
|
||||
go install github.com/onsi/ginkgo/v2/ginkgo
|
||||
ginkgo -v --label-filter '!proxy' -r ./test
|
||||
ginkgo -v --label-filter '!proxy' -r ./integration
|
||||
|
||||
integration-test-eth-proxy:
|
||||
name: "Run direct-proxy integration tests"
|
||||
@ -91,4 +91,4 @@ jobs:
|
||||
ETH_HTTP_PATH: "${{ env.ETH_HTTP_PATH }}"
|
||||
run: |
|
||||
go install github.com/onsi/ginkgo/v2/ginkgo
|
||||
ginkgo -v --label-filter 'proxy' -r ./test
|
||||
ginkgo -v --label-filter 'proxy' -r ./integration
|
||||
|
@ -10,8 +10,8 @@ import (
|
||||
. "github.com/onsi/ginkgo/v2"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
"github.com/cerc-io/ipld-eth-server/v5/integration"
|
||||
"github.com/cerc-io/ipld-eth-server/v5/pkg/eth"
|
||||
integration "github.com/cerc-io/ipld-eth-server/v5/test"
|
||||
)
|
||||
|
||||
var _ = Describe("Direct proxy integration test", Label("proxy"), func() {
|
@ -14,8 +14,8 @@ import (
|
||||
. "github.com/onsi/ginkgo/v2"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
integration "github.com/cerc-io/ipld-eth-server/v5/integration"
|
||||
"github.com/cerc-io/ipld-eth-server/v5/pkg/eth"
|
||||
integration "github.com/cerc-io/ipld-eth-server/v5/test"
|
||||
)
|
||||
|
||||
var (
|
@ -10,7 +10,7 @@ import (
|
||||
. "github.com/onsi/ginkgo/v2"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
integration "github.com/cerc-io/ipld-eth-server/v5/test"
|
||||
integration "github.com/cerc-io/ipld-eth-server/v5/integration"
|
||||
)
|
||||
|
||||
var (
|
Loading…
Reference in New Issue
Block a user