[SPARK-36164][INFRA] run-test.py should not fail when APACHE_SPARK_REF is not defined

### What changes were proposed in this pull request?
This PR aims to change run-test.py so that it does not fail when os.environ["APACHE_SPARK_REF"] is not defined.

### Why are the changes needed?
Currently, the run-test.py ends with an error.

### Does this PR introduce _any_ user-facing change?
No.

### How was this patch tested?
Pass the CIs.

Closes #33371 from williamhyun/SPARK-36164.

Authored-by: William Hyun <william@apache.org>
Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
This commit is contained in:
William Hyun 2021-07-15 11:43:30 -07:00 committed by Dongjoon Hyun
parent d69f981869
commit c8a3c22628

View file

@ -658,7 +658,7 @@ def main():
# If we're running the tests in GitHub Actions, attempt to detect and test # If we're running the tests in GitHub Actions, attempt to detect and test
# only the affected modules. # only the affected modules.
if test_env == "github_actions": if test_env == "github_actions":
if os.environ["APACHE_SPARK_REF"] != "": if "APACHE_SPARK_REF" in os.environ:
# Fork repository # Fork repository
changed_files = identify_changed_files_from_git_commits( changed_files = identify_changed_files_from_git_commits(
"HEAD", target_ref=os.environ["APACHE_SPARK_REF"]) "HEAD", target_ref=os.environ["APACHE_SPARK_REF"])