Y
Hacker News
new
|
ask
|
show
|
jobs
by
remi
4156 days ago
Actually, it does in a certain way. Travis runs builds (tests + Phare) for all pull requests (eg.
https://travis-ci.org/mirego/encore/pull_requests
) so we know if pull requests made by external contributors "break the build".
1 comments
nl5874
4156 days ago
Yes, true, but only if it breaks. This enforces common code quality issues, so it will run side-to-side with travis.
link
ayrx
4156 days ago
In all my projects (and the projects I contribute to), style issues are a build-breaking defect.
In Python this usually means running flake8 as a Travis job.
link