From 42a118813e451926af9c69ff5fea2c5b67d75401 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 14:46:36 -0400 Subject: [PATCH] chore(deps): update actions/setup-python action to v5.2.0 (#888) * chore(deps): update actions/setup-python action to v5.2.0 * chore: lint fix --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: noahnu --- .github/actions/setup-env/action.yml | 2 +- src/syrupy/session.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index ab78ed23..06b9fe74 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -26,7 +26,7 @@ runs: echo "version=$(head -n1 .poetry-version | tr -d '\n')" >> $GITHUB_OUTPUT shell: bash - name: Set up Python ${{ inputs.python-version }} - uses: actions/setup-python@v5.1.1 + uses: actions/setup-python@v5.2.0 with: python-version: ${{ inputs.python-version }} - name: Install Poetry diff --git a/src/syrupy/session.py b/src/syrupy/session.py index fcb28a1a..9770948a 100644 --- a/src/syrupy/session.py +++ b/src/syrupy/session.py @@ -125,7 +125,7 @@ def ran_item( try: self._selected_items[nodeid] = ItemStatus(outcome) except ValueError: - pass # if we don't understand the outcome, leave the item as "not run" + pass # if we don't understand the outcome, leave the item as "not run" def finish(self) -> int: exitstatus = 0