aboutsummaryrefslogtreecommitdiffstats
path: root/ci/lint-test.yml (follow)
Commit message (Collapse)AuthorAgeLines
* Update files according to new CI setupsebastiaan/backend/cache-docker-imagesGravatar Sebastiaan Zeeff2020-11-18-41/+0
|
* CI: output flake8 to stdout (resolve #37)Gravatar MarkKoz2020-02-22-1/+1
| | | | | | | | | | The Azure website has proven to not be reliable for displaying the JUnit output. Furthermore, some may simply prefer the format of the output in the terminal over the JUnit representation on the Azure site. Nevertheless, the JUnit output isn't that bad (when there's actually a lint error) so it will remain for now. It also provides historical statistics on occurrences of errors, which is kind of cool, I guess...
* CI: don't run commands through pipenvGravatar MarkKoz2020-02-22-3/+3
| | | | | | | | | | | Since #62, the dependencies have been installed to the system interpreter. Therefore, it's not necessary to run through pipenv to ensure the commands run through an activated virtual environment. This should also fix pipenv run creating a virtual environment. It seems it cannot tell when it should be using the system interpreter. It probably wasn't designed for that anyway i.e. the intent was to run commands directly in such case, which is what this PR will do.
* CI: move lint & tests job into templatesGravatar MarkKoz2020-02-21-0/+41
Splitting steps into several files makes the YAML more maintainable.