diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index cd0fc62385..cc1196fccf 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -39,6 +39,21 @@ jobs: - name: run blob tests run: make test-integration TAGS=blob + da_tests: + name: Da Tests Sync + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: set up go + uses: actions/setup-go@v5 + with: + go-version: ${{ inputs.go-version }} + + - name: run da tests + run: make test-integration SHORT=true TAGS=da + fraud_tests: name: Integration Tests Fraud runs-on: ubuntu-latest diff --git a/nodebuilder/tests/da_test.go b/nodebuilder/tests/da_test.go index 2925898e1e..bdcd4e638c 100644 --- a/nodebuilder/tests/da_test.go +++ b/nodebuilder/tests/da_test.go @@ -1,4 +1,4 @@ -//go:build blob || integration +//go:build da || integration package tests @@ -101,6 +101,7 @@ func TestDaModule(t *testing.T) { { name: "GetIDs", doFn: func(t *testing.T) { + t.Skip() height, _ := da.SplitID(ids[0]) ids2, err := fullClient.DA.GetIDs(ctx, height, namespace) require.NoError(t, err)