diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-03-06 23:45:54 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-03-06 23:45:54 +0200 |
commit | f8f338f50e95588a72769a397904186a4c192a1a (patch) | |
tree | 931597d6c98f34bcf75fb3bf60fa3c8d37e52176 | |
parent | c20c3b9bab48f0908f3547765126c4d30d11ca5a (diff) |
-rw-r--r-- | .github/workflows/auto.yml | 2 | ||||
-rwxr-xr-x | dev.sh | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/auto.yml b/.github/workflows/auto.yml index da23a58..81d4673 100644 --- a/.github/workflows/auto.yml +++ b/.github/workflows/auto.yml @@ -27,7 +27,7 @@ jobs: # Install dependencies - name: Install dev dependencies - run: PIP="pip" ./dev.sh dev + run: ./dev.sh dev # Run coverage xml - name: Run unittests with coverage and generate xml @@ -27,6 +27,11 @@ case $1 in $PIP install poetry ;; + install-latest-build) + $PIP install `ls dist/*.tar.gz -t -c -1 | head -1` \ + && echo "For uninstall please use '$PIP uninstall ...'" + ;; + poetry-dev-deps) PYTHON_KEYRING_BACKEND=keyring.backends.fail.Keyring \ poetry install --no-root @@ -72,11 +77,6 @@ case $1 in poetry build ;; - install-latest-build) - $PIP install `ls dist/*.tar.gz -t -c -1 | head -1` \ - && echo "For uninstall please use '$PIP uninstall ...'" - ;; - install) $0 install-poetry \ && $0 poetry-build \ |