Skip to content

Commit

Permalink
remove splitting workflow for each network
Browse files Browse the repository at this point in the history
  • Loading branch information
rawdaGastan committed Jul 1, 2024
1 parent 44ad5f5 commit 89aa40d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/terratest.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Intgeration tests
run-name: Intgeration tests on ${{ matrix.network }}

on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion integrationtests/qsfs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
)

func TestQSFS(t *testing.T) {
if network, _ := os.LookupEnv("NETWORK"); network == "test" {
if network, _ := os.LookupEnv("NETWORK"); network == "test" || network == "main" {
t.Skip("https://github.com/threefoldtech/terraform-provider-grid/issues/770")
return
}
Expand Down
2 changes: 1 addition & 1 deletion integrationtests/zdb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func TestZdbs(t *testing.T) {
- Destroy the deployment
*/
if network, _ := os.LookupEnv("NETWORK"); network == "test" {
if network, _ := os.LookupEnv("NETWORK"); network == "test" || network == "main" {
t.Skip("https://github.com/threefoldtech/terraform-provider-grid/issues/770")
return
}
Expand Down

0 comments on commit 89aa40d

Please sign in to comment.