diff options
author | Bryan Newbold <bnewbold@archive.org> | 2018-04-06 14:37:29 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2018-04-06 14:37:29 -0700 |
commit | 772880c0e8adae1d20ae19f00e295bf2f8e895c6 (patch) | |
tree | d82675743546a3a867fa52e2a94081f2eb8f4c02 | |
parent | 82cbabc249e5c0375dbb82106451969467f8da00 (diff) | |
download | sandcrawler-772880c0e8adae1d20ae19f00e295bf2f8e895c6.tar.gz sandcrawler-772880c0e8adae1d20ae19f00e295bf2f8e895c6.zip |
iterate gitlab-ci.yml
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1ee2688..eb052d5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,16 +2,18 @@ image: python:3.5 before_script: - apt update -qy - apt install -y python3-dev python3-pip python3-wheel libjpeg-dev - - pip3 install --user pipenv + - pip3 install pipenv + - pipenv -v test_mapreduce: script: - cd mapreduce - - pipenv install --dev + - pipenv install --dev --deploy - pipenv run pytest + #- pipenv run flake8 test_pig: script: - cd pig - - pipenv install --dev + - pipenv install --dev --deploy - pipenv run pytest |