Skip to content

Commit

Permalink
Merge pull request apache#110 from mesosphere/syntax
Browse files Browse the repository at this point in the history
fix python syntax
  • Loading branch information
mgummelt authored Jan 10, 2017
2 parents 8239fb5 + e9f9de2 commit f594107
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion bin/jenkins-package-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ function run() {
source bin/jenkins.sh
install_cli
docker_login
make universe && export $(cat "${WORKSPACE}/stub-universe.properties")
make universe
export $(cat "${WORKSPACE}/stub-universe.properties")
make test
}

Expand Down
12 changes: 6 additions & 6 deletions cli/tests/integration/test_run.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import mock
import pytest
import six

from dcos_spark import spark_submit

import mock
import pytest


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

0 comments on commit f594107

Please sign in to comment.