I currently have a project that I'm using pylint
and pytest
. I use Travis to validate my build, and also run pylint
to verify the code quality.
But I wanted to do something different and not finding anywhere about how I should proceed. I want my Travis build to break if the code rating is below 9.5
, not even running the pytest
script. Therefore I can guarantee that all the guidelines are being followed.
What can I do to trigger this? Do I have to configure my .travis.yml
or pylintrc
?