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: with:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
- name: 🔧 Install dependencies - name: ⚙️ Update pip
run: python -m pip install -U pip
- name: ⚙️ Install wheel
if: matrix.system != 'msys2' if: matrix.system != 'msys2'
run: | run: |
python -m pip install -U pip wheel python -m pip install -U wheel
python -m pip install ${{ inputs.requirements }}
- name: 🔧 Install dependencies - name: 🔧 Install dependencies
if: matrix.system == 'msys2' run: python -m pip install ${{ inputs.requirements }}
run: |
python -m pip install -U pip
python -m pip install ${{ inputs.requirements }}
- name: ☑ Run unit tests - name: ☑ Run unit tests
if: matrix.system == 'windows' if: matrix.system == 'windows'