diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..7cd8a6dd --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +image: python:3.6-stretch +before_script: + - apt update -qy + - apt install -y python3-dev python3-pip python3-wheel + - pip3 install pipenv + - pipenv --version + +test_mapreduce: + script: + - pipenv install --dev --deploy + - pipenv run pytest --cov + - pipenv run pylint --disable bad-continuation,arguments-differ,unidiomatic-typecheck fatcat |