Skip to content

Commit fa83749

Browse files
committed
python: remove mkdir() method calls
1 parent a2557e4 commit fa83749

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python/python-scripted-build-pipeline.groovy

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ List getNoseArgs(SERVER_VERSION, String platform, pyversion = "", TestParams tes
626626
{
627627
nosetests_args+="--xunit-testsuite-name=${test_rel_path} --xunit-prefix-with-testsuite-name "
628628
}
629-
mkdir(test_full_path, platform)
629+
dir(test_full_path){}
630630
[test_rel_path, nosetests_args, test_full_path, runner_command, post_command]
631631
}
632632

@@ -647,7 +647,6 @@ def doTests(node_list, platform, pyversion, LCB_VERSION, PYCBC_DEBUG_SYMBOLS, SE
647647
// USING THE PACKAGE(S) CREATED ABOVE
648648
def (GString test_rel_path, GString nosetests_args, GString test_full_path, String runner_command, String post_command) = getNoseArgs(SERVER_VERSION ?: "Mock", platform, pyversion, testParams)
649649
try {
650-
mkdir(test_full_path,platform)
651650
if (isWindows(platform)) {
652651
dir("${WORKSPACE}\\couchbase-python-client") {
653652
dir("${test_rel_path}"){}

0 commit comments

Comments
 (0)