Skip to content

Commit 4294742

Browse files
author
Michael Gummelt
committed
fix python syntax
1 parent 8239fb5 commit 4294742

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

bin/jenkins-package-test.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ function run() {
99
source bin/jenkins.sh
1010
install_cli
1111
docker_login
12-
make universe && export $(cat "${WORKSPACE}/stub-universe.properties")
12+
make universe
13+
export $(cat "${WORKSPACE}/stub-universe.properties")
1314
make test
1415
}
1516

cli/tests/integration/test_run.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77

88
@pytest.mark.skip(
9-
reason=("This is failing when fake.com fails to connect,"
10-
"but I don't want to spend the time to fix it, because this CLI is hopefully going"
11-
"away in 1.10."))
9+
reason=("This is failing when fake.com fails to connect, "
10+
"but I don't want to spend the time to fix it, because this CLI "
11+
"is hopefully going away in 1.10."))
1212
@mock.patch('subprocess.Popen')
1313
@mock.patch('dcos_spark.spark_submit.spark_app')
1414
def test_spark_hdfs_config_url(spark_app, Popen):

0 commit comments

Comments
 (0)