Skip to content

Commit a52e0ae

Browse files
committed
Provided one more makefile test for integration, and updated test.yml to not have errors as I don't have any integration tests.
1 parent 1f87755 commit a52e0ae

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ jobs:
141141
integration-tests:
142142
runs-on: ubuntu-latest
143143
needs: test
144-
if: github.event_name == 'push'
144+
if: false
145+
# github.event_name == 'push'
145146
steps:
146147
- uses: actions/checkout@v4
147148

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ test-quick: ## Run tests without coverage (faster)
4141
test-gpu: ## Run GPU tests (requires CUDA)
4242
@echo "🖥️ Running GPU tests..."
4343
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"
4447

4548
lint: ## Run all code quality checks
4649
@echo "🔍 Running code quality checks..."

0 commit comments

Comments
 (0)