Skip to content

Commit 275f992

Browse files
committed
trigger tests
1 parent c2964b8 commit 275f992

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/framework.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ jobs:
5151
- name: Run Docker Component Tests
5252
if: steps.changes.outputs.src == 'true'
5353
run: |
54-
go test -timeout 5m -v -count 1 -run TestDocker ./...
54+
go test -timeout 5m -v -count 1 -run TestComponent ./...

framework/components/clnode/clnode_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func checkBasicOutputs(t *testing.T, output *clnode.Output) {
2626
require.Contains(t, output.PostgreSQL.DockerInternalURL, "postgresql://chainlink:thispasswordislongenough@postgresql-")
2727
}
2828

29-
func TestDockerNodeWithSharedDB(t *testing.T) {
29+
func TestComponentDockerNodeWithSharedDB(t *testing.T) {
3030
testCases := []testCase{
3131
{
3232
name: "basic use case",
@@ -62,7 +62,7 @@ func TestDockerNodeWithSharedDB(t *testing.T) {
6262
}
6363
}
6464

65-
func TestDockerNodeWithDB(t *testing.T) {
65+
func TestComponentDockerNodeWithDB(t *testing.T) {
6666
testCases := []testCase{
6767
{
6868
name: "basic use case",

framework/components/fake/record_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"testing"
99
)
1010

11-
func TestRecord(t *testing.T) {
11+
func TestComponentFake(t *testing.T) {
1212
cfg := &fake.Input{
1313
Port: 9111,
1414
}

framework/components/simple_node_set/nodeset_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func checkBasicOutputs(t *testing.T, output *ns.Output) {
3737
require.Contains(t, output.CLNodes[1].Node.DockerP2PUrl, "node")
3838
}
3939

40-
func TestDockerNodeSetSharedDB(t *testing.T) {
40+
func TestComponentDockerNodeSetSharedDB(t *testing.T) {
4141
testCases := []testCase{
4242
{
4343
name: "2 nodes cluster, override mode 'all'",

0 commit comments

Comments
 (0)