1
0

🤖 Repository layout updated to latest version
Some checks failed
Python Ruff Code Quality / ruff (push) Successful in 21s
Run Python tests (through Pytest) / Test (push) Failing after 0s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s

This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
This commit is contained in:
Takunomi Automaticus, The 2nd 2024-10-20 19:46:00 +02:00
parent 1396391fbb
commit f83a0d003b

View File

@ -19,10 +19,14 @@ jobs:
uses: actions/checkout@v3
- name: Installing Python Dependencies
if: success()
run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest --break-system-packages
run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest pytest-cov --break-system-packages
- name: Installing Python Test Dependencies
if: success() && hashFiles('requirements_test.txt') != ''
run: python3 -m pip install --upgrade -r requirements_test.txt --break-system-packages
- name: Installing package
if: success()
run: python3 -m pip install .[test] --break-system-packages
- name: Test Python Code
if: success()
run: python3 -m pytest test --cov=socials_util --cov-report html:htmlcov --cov-fail-under=100
- name: Upload artifact