We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94caccc commit c755cf2Copy full SHA for c755cf2
1 file changed
.github/workflows/python-unit-tests.yml
@@ -48,6 +48,13 @@ jobs:
48
- name: Run unit tests with pytest
49
run: |
50
source .venv/bin/activate
51
- pytest tests/unittests \
52
- --ignore=tests/unittests/artifacts/test_artifact_service.py \
53
- --ignore=tests/unittests/tools/google_api_tool/test_googleapi_to_openapi_converter.py
+ if [[ "${{ matrix.python-version }}" == "3.9" ]]; then
+ pytest tests/unittests \
+ --ignore=tests/unittests/a2a \
54
+ --ignore=tests/unittests/artifacts/test_artifact_service.py \
55
+ --ignore=tests/unittests/tools/google_api_tool/test_googleapi_to_openapi_converter.py
56
+ else
57
58
59
60
+ fi
0 commit comments