From aa9a40e24facad2ae529762dfb6a25966c8a9783 Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson <oscar.gustafsson@gmail.com> Date: Tue, 21 Jun 2022 17:11:05 +0200 Subject: [PATCH] Upgrade pip in tests --- .gitlab-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1b6bb6cf..4f808078 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,9 +4,11 @@ stages: before_script: - apt-get update --yes - apt-get install --yes build-essential cmake libfmt-dev pybind11-dev - - pip3 install pytest pytest-cov - - pip3 install . - - pip3 show b_asic + - python -m pip install --upgrade pip + - python --version + - pip install pytest pytest-cov + - pip install . + - pip show b_asic .run-test: stage: test -- GitLab