From 6fad54aaf489c01b3aad69a7cabe0ba6a5b9515b Mon Sep 17 00:00:00 2001 From: akb89 Date: Tue, 4 Sep 2018 11:30:45 +0200 Subject: [PATCH] Updated CI dependencies --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ac399ed..8d33383 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,17 +21,17 @@ build:python3.7: test:python3.5: image: python:3.5 stage: test - script: pip install pytest==3.7.2 pytest-cov==2.5.1 && python -m pytest --cov=pyfn tests/ + script: pip install pytest==3.7.4 pytest-cov==2.6.0 && python -m pytest --cov=pyfn tests/ test:python3.6: image: python:3.6 stage: test - script: pip install pytest==3.7.2 pytest-cov==2.5.1 && python -m pytest --cov=pyfn tests/ + script: pip install pytest==3.7.4 pytest-cov==2.6.0 && python -m pytest --cov=pyfn tests/ test:python3.7: image: python:3.7 stage: test - script: pip install pytest==3.7.2 pytest-cov==2.5.1 && python -m pytest --cov=pyfn tests/ + script: pip install pytest==3.7.4 pytest-cov==2.6.0 && python -m pytest --cov=pyfn tests/ lint:python3.5: image: python:3.5