Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Ignore managed mode
  • Loading branch information
kyleconroy committed Dec 5, 2023
commit 1115d0e4c1c0b80ba29fd31f88a0e7897b4cf381
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
CGO_ENABLED: ${{ matrix.cgo }}

- name: test ./...
run: gotestsum --junitfile junit.xml -- --tags=examples -timeout 20m ./...
run: gotestsum --junitfile junit.xml -- -timeout 20m ./...
env:
CI_SQLC_PROJECT_ID: ${{ secrets.CI_SQLC_PROJECT_ID }}
CI_SQLC_AUTH_TOKEN: ${{ secrets.CI_SQLC_AUTH_TOKEN }}
Expand Down
2 changes: 2 additions & 0 deletions internal/endtoend/ddl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import (
)

func TestValidSchema(t *testing.T) {
t.Skip("ignore")

ctx := context.Background()

projectID := os.Getenv("CI_SQLC_PROJECT_ID")
Expand Down
3 changes: 2 additions & 1 deletion internal/endtoend/endtoend_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ func TestReplay(t *testing.T) {
}
},
Enabled: func() bool {
return len(os.Getenv("SQLC_AUTH_TOKEN")) > 0
return false
// return len(os.Getenv("SQLC_AUTH_TOKEN")) > 0
},
},
}
Expand Down