Skip to content

Commit

Permalink
Bump ruff from 0.8.4 to 0.8.5 (#1579)
Browse files Browse the repository at this point in the history
* Bump ruff from 0.8.4 to 0.8.5

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.8.4 to 0.8.5.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.8.4...0.8.5)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix ruff

* Semver

* Another ruff

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alonso Guevara <[email protected]>
  • Loading branch information
dependabot[bot] and AlonsoGuevara authored Jan 2, 2025
1 parent 80367be commit 58f646a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 22 deletions.
4 changes: 4 additions & 0 deletions .semversioner/next-release/patch-20250102232542899735.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "patch",
"description": "Ruff update"
}
40 changes: 20 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/smoke/test_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def test_fixture(
workflow_config: dict[str, dict[str, Any]],
query_config: list[dict[str, str]],
):
if workflow_config.get("skip", False):
if workflow_config.get("skip"):
print(f"skipping smoke test {input_path})")
return

Expand All @@ -291,7 +291,7 @@ def test_fixture(
if dispose is not None:
dispose()

if not workflow_config.get("skip_assert", False):
if not workflow_config.get("skip_assert"):
print("performing dataset assertions")
self.__assert_indexer_outputs(root, workflow_config)

Expand Down

0 comments on commit 58f646a

Please sign in to comment.