Skip to content

Commit 38f0de2

Browse files
committed
run all the framework tests with the same smoke prefix
1 parent 0d42257 commit 38f0de2

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ jobs:
1515
test:
1616
- path: framework
1717
vm: ubuntu-latest
18-
regex: TestComponent
19-
- path: framework/cmd
20-
vm: ubuntu-latest
21-
regex: ./...
18+
regex: TestSmoke
2219
- path: wasp
2320
vm: ubuntu22.04-16cores-64GB
2421
regex: TestSmoke

framework/cmd/ci_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var (
3636
}
3737
)
3838

39-
func TestCLIGitHubAnalytics(t *testing.T) {
39+
func TestSmokeCLIGitHubAnalytics(t *testing.T) {
4040
tests := []struct {
4141
name string
4242
setup func() *FakeGHA

framework/components/clnode/clnode_test.go

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

30-
func TestComponentDockerNodeWithSharedDB(t *testing.T) {
30+
func TestSmokeComponentDockerNodeWithSharedDB(t *testing.T) {
3131
testCases := []testCase{
3232
{
3333
name: "basic use case",
@@ -63,7 +63,7 @@ func TestComponentDockerNodeWithSharedDB(t *testing.T) {
6363
}
6464
}
6565

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

framework/components/fake/record_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/stretchr/testify/require"
1111
)
1212

13-
func TestComponentFake(t *testing.T) {
13+
func TestSmokeComponentFake(t *testing.T) {
1414
cfg := &fake.Input{
1515
Port: 9111,
1616
}

framework/components/simple_node_set/nodeset_test.go

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

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

0 commit comments

Comments
 (0)