Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Dec 11, 2017
1 parent 2afe0f1 commit 11abe89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ jobs:
- run: |
set +e
karr_lab_build_utils2 run-tests tests --with-xunit --with-coverage
karr_lab_build_utils2 run-tests --with-xunit --with-coverage
RESULT_PY2=$?
karr_lab_build_utils3 run-tests tests --with-xunit --with-coverage
karr_lab_build_utils3 run-tests --with-xunit --with-coverage
RESULT_PY3=$?
karr_lab_build_utils3 do-post-test-tasks
RESULT_POST_TASKS=$?
if [[ $RESULT_PY2 -eq 0 && $RESULT_PY3 -eq 0 && $RESULT_POST_TASKS ]]; then
if [[ $RESULT_PY2 -eq 0 && $RESULT_PY3 -eq 0 && $RESULT_POST_TASKS -eq 0 ]]; then
exit 0
else
exit 1
Expand Down

0 comments on commit 11abe89

Please sign in to comment.