Skip to content

Commit b6455a7

Browse files
committed
test: Update sayHello process to use cowpy
- Changed the environment specification from 'python=3.8' to 'cowpy'. - Updated the script to utilize cowpy for output instead of a Python command. This modification enhances the testing of Pixi environments by leveraging cowpy for greeting functionality. Signed-off-by: Edmund Miller <[email protected]>
1 parent 4967480 commit b6455a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/checks/pixi-env.nf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ workflow {
99
*/
1010

1111
process sayHello {
12-
pixi 'python=3.8'
12+
pixi 'cowpy'
1313

1414
output:
1515
stdout
1616

1717
script:
18-
'''
19-
python -c "import sys; print(f'Hello from Python {sys.version_info.major}.{sys.version_info.minor}!')"
20-
'''
18+
"""
19+
cowpy "hello pixi"
20+
"""
2121
}

0 commit comments

Comments
 (0)