Skip to content

Commit

Permalink
Try to manually copy environment variables from the parent in run-tes…
Browse files Browse the repository at this point in the history
…ts-jenkins.py (#22)
  • Loading branch information
HyukjinKwon committed Aug 14, 2019
1 parent 6821aa5 commit e6508c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/run-tests-jenkins.py
Expand Up @@ -121,7 +121,8 @@ def run_tests(tests_timeout):

test_result_code = subprocess.Popen(['timeout',
tests_timeout,
os.path.join(SPARK_HOME, 'dev', 'run-tests')]).wait()
os.path.join(SPARK_HOME, 'dev', 'run-tests')],
env=dict(os.environ)).wait()

failure_note_by_errcode = {
# error to denote run-tests script failures:
Expand Down

0 comments on commit e6508c0

Please sign in to comment.