From 528e6964272722a54eeabda2433823e345501f5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Tue, 14 Jan 2025 16:48:54 +0100 Subject: [PATCH] FIX: missing install --- .gitlab-ci.yml | 1 + loanpy/pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 74e8f5e..bc0f3db 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -72,6 +72,7 @@ unittest_py3.9: # install dependencies - *env - pip install pytest pytest-cov + - pip install . - python3 -c "import sys; assert sys.version.startswith('$PYVER')" # actual test - cd loanpy && pytest --cov=loanpy -vv ./unittests diff --git a/loanpy/pyproject.toml b/loanpy/pyproject.toml index c8603d8..5379cb7 100644 --- a/loanpy/pyproject.toml +++ b/loanpy/pyproject.toml @@ -23,9 +23,9 @@ classifiers = [ ] requires-python = ">= 3.8" dependencies = [ - "caosadvancedtools", - "py3-validate-email", - "linkahead" + "caosadvancedtools", + "py3-validate-email", + "linkahead" ] [project.urls] -- GitLab