Skip to content

Commit db948e8

Browse files
committed
TST: Reflect new report generation exit code
The exit code for `--reports-only` should be an indicator of report generation status.
1 parent 9568ccb commit db948e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ jobs:
667667
--reports-only --config-file /tmp/${DATASET}/work/${UUID}/config.toml -vv
668668
RET=$?
669669
set -e
670-
[[ "$RET" -eq "1" ]]
670+
[[ "$RET" -eq "0" ]] # ensure report was generated successfully
671671
- run:
672672
name: Clean working directory
673673
when: on_success

0 commit comments

Comments
 (0)