Skip to content

Commit

Permalink
return value
Browse files Browse the repository at this point in the history
  • Loading branch information
BjornFJohansson committed Oct 18, 2023
1 parent 5e1e6c8 commit 0c7930a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,11 @@ def main():
# stats.print_stats("local_path", 20) # Only show 20 of the listings
# stats.sort_stats('cumulative').print_stats('dir_name', 20) # Sort by cumulative time

print("run_test.py return code:", int(return_value_doc_tests and return_value_unit_tests))
return int(return_value_doc_tests and return_value_unit_tests)
return_value = int(return_value_doc_tests and return_value_unit_tests)

print("run_test.py return code:", return_value)

return return_value + 1


if __name__ == "__main__":
Expand Down

0 comments on commit 0c7930a

Please sign in to comment.