Skip to content

Commit

Permalink
more CI BS
Browse files Browse the repository at this point in the history
  • Loading branch information
jtwhite79 committed Apr 30, 2024
1 parent ad165e2 commit d572977
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,10 @@ jobs:
ls -l
cd ${{ env.test_dir }}
nosetests -v ${{ env.test_script }}
echo $?
status = $?
echo status
if [$? == 0];then
if [status == 0];then
exit 0
else
exit 127
Expand Down

0 comments on commit d572977

Please sign in to comment.