Skip to content

Commit d367a60

Browse files
committed
debugging
1 parent 839679c commit d367a60

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -52,21 +52,8 @@ jobs:
5252
python -c "from github_projects_mcp.server import mcp; print('✅ MCP server imported successfully')"
5353
python -c "import pytest; print(f'✅ Pytest version: {pytest.__version__}')"
5454
echo "=== CHECKING TEST IMPORTS ==="
55-
python -c "
56-
import sys
57-
import os
58-
sys.path.insert(0, os.path.join(os.getcwd(), 'tests'))
59-
try:
60-
import conftest
61-
print('✅ conftest imported successfully')
62-
except Exception as e:
63-
print(f'❌ conftest import failed: {e}')
64-
try:
65-
from tests.test_compatibility import TestCompatibility
66-
print('✅ test_compatibility imported successfully')
67-
except Exception as e:
68-
print(f'❌ test_compatibility import failed: {e}')
69-
"
55+
python -c "import sys, os; sys.path.insert(0, os.path.join(os.getcwd(), 'tests')); import conftest; print('✅ conftest imported successfully')" || echo "❌ conftest import failed"
56+
python -c "from tests.test_compatibility import TestCompatibility; print('✅ test_compatibility imported successfully')" || echo "❌ test_compatibility import failed"
7057
7158
- name: Create test environment file
7259
run: |

0 commit comments

Comments
 (0)