From 5877fd4df5d3eb88fc57fe13a2d3ece929416262 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Tue, 5 Jan 2021 13:22:37 -0600 Subject: [PATCH] Improves test --- .gitlab-ci.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a1088e1..a4f2f42 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,8 @@ +variables: + PYTHON3_32: "C:\\python39\\python.exe" + #PYTHON3_64: "C:\\python37-64\\python.exe" + #NSIS: "C:\\nsis\\makensis.exe" + .shared_windows_runners: tags: - shared-windows @@ -13,13 +18,12 @@ before_script: - echo ${time} - echo "started by ${GITLAB_USER_NAME}" - choco install python3 -y - -build: - extends: - - .shared_windows_runners - stage: build - script: - - echo "running scripts in the build job" + - refreshenv + - '&$env:PYTHON3_32 -V' + - '&$env:PYTHON3_32 -m pip install --upgrade pip' + - '&$env:PYTHON3_32 -m pip install --upgrade -r requirements.txt' + - '&$env:PYTHON3_32 -m pip uninstall enum34 -y' + - python -V test: extends: