Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

fix break windows local and remote pipelines #2785

Merged
merged 3 commits into from
Aug 12, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/config/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ testCases:
configFile: test/config/examples/sklearn-regression.yml
setExperimentIdtoVar: $resumeExpId
# for subfolder in codedir test
launchCommand: mkdir -p ../examples/trials/sklearn/regression/subfolder && touch ../examples/trials/sklearn/regression/subfolder/subfile && nnictl create --config $configFile --debug
launchCommand: python3 -c "import os; os.mkdir('../examples/trials/sklearn/regression/subfolder'); open('../examples/trials/sklearn/regression/subfolder/subfile', 'a').close()" && nnictl create --config $configFile --debug
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the folder already exist, this line will throw exception


# Experiment resume test part 2
- name: nnictl-resume-2
Expand Down