We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f87755 commit a52e0aeCopy full SHA for a52e0ae
.github/workflows/test.yml
@@ -141,7 +141,8 @@ jobs:
141
integration-tests:
142
runs-on: ubuntu-latest
143
needs: test
144
- if: github.event_name == 'push'
+ if: false
145
+ # github.event_name == 'push'
146
steps:
147
- uses: actions/checkout@v4
148
Makefile
@@ -41,6 +41,9 @@ test-quick: ## Run tests without coverage (faster)
41
test-gpu: ## Run GPU tests (requires CUDA)
42
@echo "🖥️ Running GPU tests..."
43
pytest tests/unit/ -v -m "gpu"
44
+test-integration: ## Run GPU tests (requires CUDA)
45
+ @echo "🖥️ Running integration tests..."
46
+ pytest tests/unit/ -v -m "integration"
47
48
lint: ## Run all code quality checks
49
@echo "🔍 Running code quality checks..."
0 commit comments