Remove `&&` in `script/ci`

This commit is contained in:
Luca Guidi 2020-11-12 13:59:05 +01:00
parent df741d123a
commit 80fd6ad379
No known key found for this signature in database
GPG Key ID: C1EAA1351830CF58
1 changed files with 5 additions and 5 deletions

View File

@ -63,11 +63,11 @@ upload_code_coverage() {
}
main() {
setup &&
run_unit_tests &&
run_isolation_tests &&
run_integration_tests &&
upload_code_coverage
setup
run_unit_tests
run_isolation_tests
run_integration_tests
upload_code_coverage
}
trap teardown EXIT