You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prioritize visual output verification over command inspection
Changed testing section to check visual output first (faster and more
natural for workshops), with command file inspection as an optional
follow-up for those who want to see implementation details.
Addresses PR feedback about making workshop experience more efficient.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
Copy file name to clipboardExpand all lines: docs/hello_nf-core/04_make_module.md
+21-17Lines changed: 21 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -379,23 +379,7 @@ The pipeline should run successfully. In the output, look for the cowpy process
379
379
[bd/0abaf8] CORE_HELLO:HELLO:cowpy [100%] 1 of 1 ✔
380
380
```
381
381
382
-
Now let's verify that the `ext.args` configuration actually passed the character argument to the cowpy command. Use the task hash (the `bd/0abaf8` part) to inspect the `.command.sh` file in the work directory:
383
-
384
-
```bash
385
-
cat work/bd/0abaf8*/.command.sh
386
-
```
387
-
388
-
You should see the cowpy command with the `-c cow` argument:
389
-
390
-
```console title="Output"
391
-
#!/usr/bin/env bash
392
-
...
393
-
cat test.txt | cowpy -c kosh > cowpy-test.txt
394
-
```
395
-
396
-
This confirms that `task.ext.args` successfully passed the character parameter through the configuration rather than requiring it as a process input.
397
-
398
-
We can also check the output:
382
+
Let's verify that the `ext.args` configuration worked by checking the output. Use the task hash (the `bd/0abaf8` part) to look at the output file:
0 commit comments