Skip to content
Open
Changes from all commits
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
18 changes: 16 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -694,11 +694,11 @@ tasks:
-- -parallel 4 -timeout=12h

integration-short:
desc: Run short integration tests
desc: Run integration tests except the slow ones (skips CloudSlow via -short)
deps: [install-pythons]
cmds:
- |
DATABRICKS_TEST_SKIPLOCAL=1 VERBOSE_TEST=1 \
VERBOSE_TEST=1 \
go run -modfile=tools/go.mod ./tools/testrunner/main.go \
{{.GO_TOOL}} gotestsum \
--format github-actions \
Expand All @@ -707,6 +707,20 @@ tasks:
--packages "./acceptance ./integration/..." \
-- -parallel 4 -timeout=12h -short

integration-short-skiplocal:
desc: Run integration tests for PRs (skips CloudSlow and tests with testserver coverage)
deps: [install-pythons]
cmds:
- |
DATABRICKS_TEST_SKIPLOCAL=1 VERBOSE_TEST=1 \
go run -modfile=tools/go.mod ./tools/testrunner/main.go \
{{.GO_TOOL}} gotestsum \
--format github-actions \
--rerun-fails \
--jsonfile output.json \
--packages "./acceptance ./integration/..." \
-- -parallel 4 -timeout=2h -short

dbr-integration:
desc: Run DBR acceptance tests on Databricks Runtime
deps: [install-pythons]
Expand Down
Loading