fix: success should be bool
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Aravinth Manivannan 2023-09-28 22:46:33 +05:30
parent cb00c56263
commit f4244bfc83
Signed by: realaravinth
GPG key ID: F8F50389936984FF

2
run.py
View file

@ -223,4 +223,4 @@ if __name__ == "__main__":
print(log)
logs.append(log)
upload_logs_to_ftest(success, logs)
upload_logs_to_ftest(len(failures) == 0, logs)