diff options
-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 |