1
0

Compare commits

..

No commits in common. "141ca7c62368efe49c760b88c5a88a869db2e868" and "ee8352b017c190fb90329774bc2a07823a8624e9" have entirely different histories.

View File

@ -19,13 +19,10 @@ jobs:
uses: actions/checkout@v3
- name: Installing Python Dependencies
if: success()
run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest pytest-cov --break-system-packages
run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest --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=personal_data --cov-report html:htmlcov --cov-fail-under=0