chore(deps): update dependency pytest to v8 #677
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint and Test | |
on: | |
push: | |
branches: ['dev', 'feature/**', 'master', 'release/*'] | |
pull_request: | |
branches: ['dev', 'feature/**', 'master', 'release/*'] | |
types: [opened, reopened, synchronize] | |
release: | |
types: [edited, published] | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
lint: | |
name: Lint (Python ${{ matrix.python-version }} on ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
python-version: [ '3.10' ] | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Miniconda | |
uses: conda-incubator/setup-miniconda@835234971496cad1653abb28a638a281cf32541f # v3.2.0 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
miniconda-version: "latest" | |
- name: Install latest conda | |
run: | | |
conda update -n base -q conda | |
- name: Install dependencies | |
run: | | |
conda install -c defaults -c anaconda-cloud python=${{ matrix.python-version }} pip --file requirements.txt --file requirements-extra.txt | |
pip install -r requirements-dev.txt | |
pip install -e . --no-deps | |
- name: Conda environment information | |
id: conda_environment_information | |
run: | | |
conda info | |
conda config --show | |
conda list --show-channel-urls | |
echo "exit_status=success" >> "$GITHUB_OUTPUT" | |
- name: Check with bandit | |
if: ${{ always() && steps.conda_environment_information.outputs.exit_status == 'success' }} | |
run: | | |
make lint-bandit | |
- name: Check with mypy | |
if: ${{ always() && steps.conda_environment_information.outputs.exit_status == 'success' }} | |
run: | | |
make lint-mypy | |
test: | |
name: Test (Python ${{ matrix.python-version }} on ${{ matrix.os }}) | |
needs: [lint] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ macos-latest, ubuntu-latest, windows-latest ] | |
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ] | |
steps: | |
# most of these steps might be anchored to corresponding ones in the "lint_code" job | |
# unfortunately, as of June 2021 - GitHub doesn't support anchors for action scripts | |
- name: Checkout project | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Miniconda | |
uses: conda-incubator/setup-miniconda@835234971496cad1653abb28a638a281cf32541f # v3.2.0 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
miniconda-version: "latest" | |
- name: Install latest conda | |
run: | | |
conda update -n base -q conda | |
- name: Install dependencies | |
run: | | |
conda install -c defaults -c anaconda-cloud python=${{ matrix.python-version }} pip --file requirements.txt --file requirements-extra.txt | |
pip install -r requirements-dev.txt | |
pip install -e . --no-deps | |
- name: Conda environment information | |
run: | | |
conda info | |
conda config --show | |
conda list --show-channel-urls | |
- name: Run tests | |
env: | |
_TYPER_FORCE_DISABLE_TERMINAL: 1 | |
run: | | |
mkdir -p .artifacts/reports | |
python scripts/refresh_coveragerc.py | |
python -X utf8 -m pytest tests/ --cov-report html:.artifacts/reports/coverage --html=.artifacts/reports/pytest.html --self-contained-html | |
- name: Export reports | |
if: ${{ always() }} | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
with: | |
name: report-test-${{ matrix.python-version }}-${{ matrix.os }} | |
path: .artifacts/reports | |
retention-days: 7 |