Add basic Gitlab CI file

This commit is contained in:
John Helmert
2019-06-09 20:21:02 -05:00
parent 7e9455b4ca
commit 0b5657d76d
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View File

@@ -5,6 +5,7 @@
!.gitattributes !.gitattributes
!.gitlab !.gitlab
!.coveragerc !.coveragerc
!.gitlab-ci.yml
*~ *~
*.pyc *.pyc
*.log *.log

7
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,7 @@
python3.6:
image: python:3.6-stretch
script:
- pip install .[test]
- pip install .
- python -m pytest tests/
- pylint --rcfile .pylintrc -E tuir/