Skip to content

Commit 01529f8

Browse files
committed
Refactor test workflow: update test steps to run standalone tests and all tests without live integration
1 parent 09a5814 commit 01529f8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ jobs:
8282
- name: Lint with Ruff
8383
run: ruff check --output-format=github datalab_kernel
8484

85-
- name: Run unit tests
86-
run: pytest datalab_kernel/tests/unit datalab_kernel/tests/contract -v --tb=long
85+
- name: Run standalone tests
86+
run: pytest --standalone-only -v --tb=long
8787

88-
- name: Run live integration tests
88+
- name: Run all tests
8989
run: |
9090
# Run integration tests with DataLab auto-start
91-
pytest --live --start-datalab datalab_kernel/tests/integration -v --tb=long
91+
pytest -v --tb=long

0 commit comments

Comments
 (0)