You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2023/10/11 12:03:45 UTC

[beam] branch users/damccorm/slash created (now e5023461153)

This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a change to branch users/damccorm/slash
in repository https://gitbox.apache.org/repos/asf/beam.git


      at e5023461153 Fix missing backslash in arguments of job

This branch includes the following new commits:

     new e5023461153 Fix missing backslash in arguments of job

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[beam] 01/01: Fix missing backslash in arguments of job

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch users/damccorm/slash
in repository https://gitbox.apache.org/repos/asf/beam.git

commit e5023461153f4452333a24f0a6737ffad6ab3fe0
Author: Danny McCormick <da...@google.com>
AuthorDate: Wed Oct 11 08:03:38 2023 -0400

    Fix missing backslash in arguments of job
    
    This is causing repeated failures (e.g. https://github.com/apache/beam/actions/runs/6478627017/job/17590709062)
---
 .../beam_PostCommit_Python_ValidatesContainer_Dataflow_With_RC.yml    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/beam_PostCommit_Python_ValidatesContainer_Dataflow_With_RC.yml b/.github/workflows/beam_PostCommit_Python_ValidatesContainer_Dataflow_With_RC.yml
index 18b57aad805..44df23f0296 100644
--- a/.github/workflows/beam_PostCommit_Python_ValidatesContainer_Dataflow_With_RC.yml
+++ b/.github/workflows/beam_PostCommit_Python_ValidatesContainer_Dataflow_With_RC.yml
@@ -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"
\ No newline at end of file
+          path: "**/pytest*.xml"