Message 371661 - Python tracker

Message371661

Author vstinner
Recipients vstinner
Date 2020-06-16.14:58:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1592319538.03.0.787243890388.issue40993@roundup.psfhosted.org>
In-reply-to
Content
Currently, Travis CI runs C coverage and Python coverage jobs on all pull requests. This is a waste of resources: we should only run these jobs on branches like master.

Attached PR skips these jobs on pull requests.

Not only it's a waste of resources, but it seems like it's not longer possible to merge a PR as soon as Travis CI required jobs pass: a PR can only be merged when *all* Travis CI jobs complete. Problem: while a full test suite run takes around 20 min, coverage jobs take longer than 40 minutes.

By the way, the C coverage job fails with timeout, but that's a different issue.
History
Date User Action Args
2020-06-16 14:58:58vstinnersetrecipients: + vstinner
2020-06-16 14:58:58vstinnersetmessageid: <1592319538.03.0.787243890388.issue40993@roundup.psfhosted.org>
2020-06-16 14:58:58vstinnerlinkissue40993 messages
2020-06-16 14:58:57vstinnercreate