From 2fa2852f13a0e9f6f84233583066e18181ddac93 Mon Sep 17 00:00:00 2001 From: martin-sicho Date: Wed, 27 Mar 2024 09:21:29 +0100 Subject: [PATCH] fix install commands --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb4022ae..e1945d8e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,9 +23,9 @@ stages: # - pip config set global.extra-index-url https://test.pypi.org/simple/ - python -m pip install ".[full]" --no-cache-dir - python -c "import qsprpred; print(qsprpred.__version__)" # For debugging package version - - python -m install pytest - - python -m install jupyterlab - - python -m freeze # For debugging environment + - python -m pip install pytest + - python -m pip install jupyterlab + - python -m pip freeze # For debugging environment script: - cd testing && QSPPRED_TEST_SPLIT_UNITS=true QSPRPRED_VERBOSE_LOGGING=true ./run.sh