Defined outdated tests are 30+ days old instead of 45

This commit is contained in:
root 2020-11-07 17:55:59 +00:00
parent 317df3d148
commit ca5852c85f

View file

@ -99,7 +99,7 @@ class AppCIResult(db.Model):
@property
def outdated(self):
return (datetime.datetime.now() - self.date).days > 45
return (datetime.datetime.now() - self.date).days > 30
class AppCI():