Skip to content

Commit 0fe3ec9

Browse files
committed
escape the emoji for py2.7+mswin
1 parent c6d8b9d commit 0fe3ec9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/echo-position-expr.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ arguments:
1818
- position: ${return 2;}
1919
valueFrom: singular
2020
- position: ${return null;}
21-
valueFrom: 🕺
21+
valueFrom: "\U0001F57A"
2222
outputs:
2323
out:
2424
type: string

tests/test_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ def test_bad_basecommand_docker():
890890
assert "permanentFail" in stderr, stderr
891891
assert error_code == 1
892892

893-
@pytest.mark.skipif(onWindows() and six.PY2, reason="emojis not supported with Py2 under Windows")
893+
#@pytest.mark.skipif(onWindows() and six.PY2, reason="emojis not supported with Py2 under Windows")
894894
def test_v1_0_position_expression():
895895
test_file = "tests/echo-position-expr.cwl"
896896
test_job = "tests/echo-position-expr-job.yml"

0 commit comments

Comments
 (0)