From 45a54a019f5f201d5bfcb637b1a478cf96074fd0 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Sat, 29 Dec 2018 23:54:44 -0600 Subject: [PATCH] Fixed bad syntax in coverage report --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 821b71a..c974d05 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,7 +32,7 @@ test_py3: - '%PYTHON3% -m pip install --upgrade -r requirements.txt' script: - cd src - - '%PYTHON3% -m coverage run_tests.py' + - '%PYTHON3% -m coverage run run_tests.py' - '%PYTHON3% -m coverage report' coverage: '/TOTAL.+ ([0-9]{1,3}%)/' @@ -111,7 +111,7 @@ build_setup: # Automatic updates and generation of a windows installer file are not supported for this version. # The following jobs are not documented as they are basically the same than those used for python 3. -# Python 3 tests +# Python 2 tests test_py2: stage: test tags: @@ -122,7 +122,7 @@ test_py2: - '%PYTHON2% -m pip install --upgrade -r requirements.txt' script: - cd src - - '%PYTHON2% -m coverage run_tests.py' + - '%PYTHON2% -m coverage run run_tests.py' - '%PYTHON2% -m coverage report' coverage: '/TOTAL.+ ([0-9]{1,3}%)/' only: