Skip to content

Commit 7cad86d

Browse files
committed
🚚 Move yaml_template into configuration module
1 parent 931eb71 commit 7cad86d

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.github/workflows/check_updated_preconfigs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
fi
4444
export PYTHONPATH=$PWD
4545
pip install nipype numpy matplotlib pandas pathvalidate pytz pyyaml voluptuous yamlordereddictloader
46-
python ./CPAC/utils/yaml_template.py
46+
python ./CPAC/utils/configuration/yaml_template.py
4747
if [[ ! -z $(git diff origin/${GITHUB_BRANCH}) ]]
4848
then
4949
git add CPAC/resources/configs

CPAC/pipeline/cpac_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from CPAC.utils.monitoring import failed_to_start, log_nodes_cb
2727
from CPAC.longitudinal_pipeline.longitudinal_workflow import \
2828
anat_longitudinal_wf
29-
from CPAC.utils.yaml_template import upgrade_pipeline_to_1_8
29+
from CPAC.utils.configuration.yaml_template import upgrade_pipeline_to_1_8
3030

3131

3232
# Run condor jobs
File renamed without changes.

CPAC/utils/tests/test_yaml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import yaml
2222

2323
from CPAC.utils.configuration import preconfig_yaml
24-
from CPAC.utils.yaml_template import create_yaml_from_template
24+
from CPAC.utils.configuration.yaml_template import create_yaml_from_template
2525

2626

2727
def test_yaml_template():

0 commit comments

Comments
 (0)