Changes Project to Poetry

This commit is contained in:
2023-06-11 15:36:08 -03:00
parent 753a8cb964
commit 6e10d07416
6 changed files with 58 additions and 15 deletions

View File

@@ -23,8 +23,8 @@ jobs:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv
if [ -f Pipfile ]; then pipenv install; fi
python -m pip install --upgrade pip poetry;
[ -f pyproject.toml ] && poetry install;
- name: Test with unittest
run: |
pipenv run python -m unittest -v
poetry run python -m unittest -v