File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change 2525 with :
2626 python-version : " 3.11"
2727
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-
3928 - name : Setup Python test environment
40- if : steps.check-tests.outputs.tests_exist == 'true'
4129 run : |
4230 cd test
4331 python -m venv venv
4634 python -m pip install -r requirements.txt
4735
4836 - name : Run Python linting
49- if : steps.check-tests.outputs.tests_exist == 'true'
5037 run : |
5138 cd test
5239 source venv/bin/activate
You can’t perform that action at this time.
0 commit comments