Skip to content

Commit fce7cb6

Browse files
committed
Refactor pipeline directory structure and filenames
1 parent 91c64ce commit fce7cb6

File tree

24 files changed

+36
-36
lines changed

24 files changed

+36
-36
lines changed

.github/workflows/test-pipelines.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ jobs:
4141
run: |
4242
failed=()
4343
for p in \
44-
"pipelines/helloWorld/hello_pipeline.py" \
45-
"pipelines/caching/cache_pipeline.py" \
46-
"pipelines/fanOut/fan_pipeline.py" \
47-
"pipelines/metadata/meta_pipeline.py" \
48-
"pipelines/parameters/param_pipeline.py" \
49-
"pipelines/retries/robust_pipeline.py" \
50-
"pipelines/stepIO/io_pipeline.py" \
51-
"pipelines/tagging/tagged_pipeline.py" \
52-
"pipelines/visualizations/viz_pipeline.py" \
53-
"pipelines/yamlConfig/yaml_pipeline.py"; do
44+
"pipelines/hello_pipeline/hello_pipeline.py" \
45+
"pipelines/cache_pipeline/cache_pipeline.py" \
46+
"pipelines/fan_pipeline/fan_pipeline.py" \
47+
"pipelines/meta_pipeline/meta_pipeline.py" \
48+
"pipelines/param_pipeline/param_pipeline.py" \
49+
"pipelines/robust_pipeline/robust_pipeline.py" \
50+
"pipelines/io_pipeline/io_pipeline.py" \
51+
"pipelines/tagged_pipeline/tagged_pipeline.py" \
52+
"pipelines/viz_pipeline/viz_pipeline.py" \
53+
"pipelines/yaml_pipeline/yaml_pipeline.py"; do
5454
5555
echo "Running $p…"
56-
if [[ "$p" == *"retries/robust_pipeline.py" ]]; then
56+
if [[ "$p" == *"robust_pipeline/robust_pipeline.py" ]]; then
5757
PYTHONPATH=$GITHUB_WORKSPACE:$PYTHONPATH python "$p" || echo "⚠ robust_pipeline demo: failure expected"
5858
else
5959
PYTHONPATH=$GITHUB_WORKSPACE:$PYTHONPATH python "$p" || failed+=("$p")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)