Skip to content

Commit

Permalink
Fix missing backslash in arguments of job (#28942)
Browse files Browse the repository at this point in the history
  • Loading branch information
damccorm authored Oct 11, 2023
1 parent d437afa commit a54afde
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ jobs:
with:
gradle-command: :sdks:python:test-suites:dataflow:py${{steps.set_py_ver_clean.outputs.py_ver_clean}}:validatesContainer
arguments: |
-PtestRCDependencies=true
-PtestRCDependencies=true \
-PpythonVersion=${{ matrix.python_version }} \
- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: python-code-coverage-report
path: "**/pytest*.xml"
path: "**/pytest*.xml"

0 comments on commit a54afde

Please sign in to comment.