CI/Doc: Use pytest subtests (#986)

* CI/Doc: use pytest-subtests

* CI: clean up pip installs a bit

* make lint and unittests install the same stuff
* make sure to install wheel, which is a recommended (not required) dependency for everything pip
This commit is contained in:
black-sliver
2022-09-01 09:30:28 +02:00
committed by GitHub
parent 0444fdc379
commit b115bdafe7
3 changed files with 9 additions and 4 deletions

View File

@@ -18,8 +18,8 @@ jobs:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
python -m pip install --upgrade pip wheel
pip install flake8 pytest pytest-subtests
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |