Skip to content

Commit

Permalink
Merge pull request #5767 from rhinstaller/dependabot/pip/dockerfile/r…
Browse files Browse the repository at this point in the history
…uff-0.5.2

infra: bump ruff from 0.5.0 to 0.5.2 in /dockerfile
  • Loading branch information
KKoukiou authored Jul 22, 2024
2 parents 52e395e + 9424768 commit 32e24a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dockerfile/anaconda-ci/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pylint == 3.2.5
astroid == 3.2.3

# ruff for fast linting
ruff == 0.5.0
ruff == 0.5.2

# vulture for dead code analysis
vulture == 2.11
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ def test_run_success(self, sysroot_new_mock, async_new_mock, context_mock):
repo_mock.pull_with_options.assert_called_once()
name, args, kwargs = repo_mock.pull_with_options.mock_calls[0]
opts = args[1]
assert type(opts) == Variant
assert type(opts) is Variant
assert opts.unpack() == {"refs": ["ref"], "flags": OSTree.RepoPullFlags.UNTRUSTED}
repo_mock.remote_delete.assert_called_once_with("remote", None)

Expand Down Expand Up @@ -1014,7 +1014,7 @@ def test_run_failure(self, sysroot_new_mock, async_new_mock, context_mock):
repo_mock.pull_with_options.assert_called_once()
name, args, kwargs = repo_mock.pull_with_options.mock_calls[0]
opts = args[1]
assert type(opts) == Variant
assert type(opts) is Variant
assert opts.unpack() == {"refs": ["ref"], "flags": OSTree.RepoPullFlags.UNTRUSTED}
repo_mock.remote_delete.assert_not_called()

Expand Down

0 comments on commit 32e24a4

Please sign in to comment.