Skip to content

Commit c81caec

Browse files
committed
Generate plugin repo YAML in CI
1 parent 2984df4 commit c81caec

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

.github/workflows/build-and-snapshot.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,7 @@ jobs:
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
@@ -46,7 +34,6 @@ jobs:
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

0 commit comments

Comments
 (0)