diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-11 15:02:51 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-11 15:02:51 -0700 |
commit | f8920f46b46282670229bdb7cf12052d167c26e8 (patch) | |
tree | 09c1db61735d033d634d5bef23861573894ddd52 /.gitlab-ci.yml | |
parent | d64e403646393089214675e45fba801c2436e4d2 (diff) | |
download | fatcat-f8920f46b46282670229bdb7cf12052d167c26e8.tar.gz fatcat-f8920f46b46282670229bdb7cf12052d167c26e8.zip |
dev infra
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 |