diff --git a/ci-scripts/ci-runner.bash b/ci-scripts/ci-runner.bash index 8e8af1d3ec..f7ff3623f6 100644 --- a/ci-scripts/ci-runner.bash +++ b/ci-scripts/ci-runner.bash @@ -158,7 +158,7 @@ elif [ $CI_TUTORIAL -eq 1 ]; then # Run tutorial checks # Find modified or added tutorial checks tutorialchecks=( $(git diff origin/master...HEAD --name-only --oneline --no-merges | \ - grep -e '^tutorial/(?!config/).*\.py') ) + grep -e '^tutorial/.*\.py') ) if [ ${#tutorialchecks[@]} -ne 0 ]; then tutorialchecks_path="" diff --git a/tutorial/config/settings.py b/tutorial/config/settings.py index a4333e4f09..0e3913831c 100644 --- a/tutorial/config/settings.py +++ b/tutorial/config/settings.py @@ -43,7 +43,7 @@ ], 'container_platforms': [ { - 'name': 'Singularity', + 'type': 'Singularity', 'modules': ['Singularity'] } ], @@ -64,7 +64,7 @@ ], 'container_platforms': [ { - 'name': 'Singularity', + 'type': 'Singularity', 'modules': ['Singularity'] } ],