Skip to content

Commit 58f646a

Browse files
Bump ruff from 0.8.4 to 0.8.5 (#1579)
* 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]>
1 parent 80367be commit 58f646a

File tree

3 files changed

+26
-22
lines changed

3 files changed

+26
-22
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "patch",
3+
"description": "Ruff update"
4+
}

poetry.lock

+20-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/smoke/test_fixtures.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def test_fixture(
274274
workflow_config: dict[str, dict[str, Any]],
275275
query_config: list[dict[str, str]],
276276
):
277-
if workflow_config.get("skip", False):
277+
if workflow_config.get("skip"):
278278
print(f"skipping smoke test {input_path})")
279279
return
280280

@@ -291,7 +291,7 @@ def test_fixture(
291291
if dispose is not None:
292292
dispose()
293293

294-
if not workflow_config.get("skip_assert", False):
294+
if not workflow_config.get("skip_assert"):
295295
print("performing dataset assertions")
296296
self.__assert_indexer_outputs(root, workflow_config)
297297

0 commit comments

Comments
 (0)