-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix python3 string/bytes error when using --printLogs (#3005)
* add test for issue #3004 Test to reproduce `TypeError: can only concatenate str (not "bytes") to str` error. * printJobLog convert bytes to utf-8 Fix for problem raised in issue #3004 * improve printJobLog test method * remove unused mock_open import
- Loading branch information
1 parent
b058ff5
commit 2bd7920
Showing
3 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env cwl-runner | ||
# Command that will always fail | ||
cwlVersion: v1.0 | ||
class: CommandLineTool | ||
baseCommand: invalidcommand | ||
inputs: | ||
message: | ||
type: string | ||
inputBinding: | ||
position: 1 | ||
outputs: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters