Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Setup environment"
run: "pip install ruff==0.5.0"
run: "pip install ruff==0.7.1"
- name: "Linting: ruff check"
run: "ruff check ."
- name: "Linting: ruff format"
Expand Down
2 changes: 1 addition & 1 deletion infrahub_sdk/transfer/exporter/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

# Record the relationship only if it's not known in one way or another
if not forward and not backward:
many_relationship_identifiers[(node_schema.kind, relationship.peer)] = relationship.identifier
many_relationship_identifiers[node_schema.kind, relationship.peer] = relationship.identifier

Check warning on line 57 in infrahub_sdk/transfer/exporter/json.py

View check run for this annotation

Codecov / codecov/patch

infrahub_sdk/transfer/exporter/json.py#L57

Added line #L57 was not covered by tests

return many_relationship_identifiers

Expand Down
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.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pre-commit = "^2.20.0"
types-toml = "*"
types-ujson = "*"
types-pyyaml = "*"
ruff = "0.5.0"
ruff = "0.7.1"
pytest-xdist = "^3.3.1"
types-python-slugify = "^8.0.0.3"
invoke = "^2.2.0"
Expand Down