We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09a5814 commit 01529f8Copy full SHA for 01529f8
.github/workflows/test.yml
@@ -82,10 +82,10 @@ jobs:
82
- name: Lint with Ruff
83
run: ruff check --output-format=github datalab_kernel
84
85
- - name: Run unit tests
86
- run: pytest datalab_kernel/tests/unit datalab_kernel/tests/contract -v --tb=long
+ - name: Run standalone tests
+ run: pytest --standalone-only -v --tb=long
87
88
- - name: Run live integration tests
+ - name: Run all tests
89
run: |
90
# Run integration tests with DataLab auto-start
91
- pytest --live --start-datalab datalab_kernel/tests/integration -v --tb=long
+ pytest -v --tb=long
0 commit comments