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