File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1- import mock
2- import pytest
31import six
4-
52from dcos_spark import spark_submit
63
4+ import mock
5+ import pytest
6+
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' )
1414def test_spark_hdfs_config_url (spark_app , Popen ):
You can’t perform that action at this time.
0 commit comments