Add basic Gitlab CI file
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,6 +5,7 @@
|
||||
!.gitattributes
|
||||
!.gitlab
|
||||
!.coveragerc
|
||||
!.gitlab-ci.yml
|
||||
*~
|
||||
*.pyc
|
||||
*.log
|
||||
|
||||
7
.gitlab-ci.yml
Normal file
7
.gitlab-ci.yml
Normal 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/
|
||||
Reference in New Issue
Block a user