Skip to content

Commit 4506537

Browse files
committed
ci(tests): Do not fail on stderr
1 parent 0cce442 commit 4506537

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/test-action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,14 @@ jobs:
6868
6969
echo "GITHUB_PATH"
7070
cat $GITHUB_PATH
71+
72+
cat ~/.local/bin/jython
7173
7274
- name: Run Jython (Bash)
7375
shell: bash
7476
run: |
77+
set +e;
78+
7579
output="$(jython -c 'import sys, os; print(os.name, sys.version); print "\n\nJython Works!\n\n"')";
7680
echo "$output";
7781
echo "$output" | grep -q "Jython Works!";

0 commit comments

Comments
 (0)