We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2984df4 commit c81caecCopy full SHA for c81caec
1 file changed
.github/workflows/build-and-snapshot.yml
@@ -25,19 +25,7 @@ jobs:
25
with:
26
python-version: "3.11"
27
28
- - name: Check if Python tests exist
29
- id: check-tests
30
- run: |
31
- if [ -f "test/requirements.txt" ] && [ -f "test/test.sh" ]; then
32
- echo "tests_exist=true" >> $GITHUB_OUTPUT
33
- echo "✅ Python test suite found"
34
- else
35
- echo "tests_exist=false" >> $GITHUB_OUTPUT
36
- echo "⚠️ Python test suite not found - skipping tests"
37
- fi
38
-
39
- name: Setup Python test environment
40
- if: steps.check-tests.outputs.tests_exist == 'true'
41
run: |
42
cd test
43
python -m venv venv
@@ -46,7 +34,6 @@ jobs:
46
python -m pip install -r requirements.txt
47
48
- name: Run Python linting
49
50
51
52
source venv/bin/activate
0 commit comments