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() {
9
9
source bin/jenkins.sh
10
10
install_cli
11
11
docker_login
12
- make universe && export $( cat " ${WORKSPACE} /stub-universe.properties" )
12
+ make universe
13
+ export $( cat " ${WORKSPACE} /stub-universe.properties" )
13
14
make test
14
15
}
15
16
Original file line number Diff line number Diff line change 1
- import mock
2
- import pytest
3
1
import six
4
-
5
2
from dcos_spark import spark_submit
6
3
4
+ import mock
5
+ import pytest
6
+
7
7
8
8
@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." ))
12
12
@mock .patch ('subprocess.Popen' )
13
13
@mock .patch ('dcos_spark.spark_submit.spark_app' )
14
14
def test_spark_hdfs_config_url (spark_app , Popen ):
You can’t perform that action at this time.
0 commit comments