UnitTesting: refactor

This commit is contained in:
umarcor
2022-01-09 19:49:20 +01:00
parent edb6ca364e
commit b3d8a9c5ec

View File

@@ -82,17 +82,16 @@ jobs:
with:
python-version: ${{ matrix.python }}
- name: 🔧 Install dependencies
- name: ⚙️ Update pip
run: python -m pip install -U pip
- name: ⚙️ Install wheel
if: matrix.system != 'msys2'
run: |
python -m pip install -U pip wheel
python -m pip install ${{ inputs.requirements }}
python -m pip install -U wheel
- name: 🔧 Install dependencies
if: matrix.system == 'msys2'
run: |
python -m pip install -U pip
python -m pip install ${{ inputs.requirements }}
run: python -m pip install ${{ inputs.requirements }}
- name: ☑ Run unit tests
if: matrix.system == 'windows'