Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
Skip argument test (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
redromnon committed Apr 25, 2023
1 parent 066199b commit 9d6aba9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/testcheckbinary.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def setUp(self):
checkbinary.configpath = Mock()
checkbinary.configpath.is_flatpak = False

checkbinary.args.silent = True
#checkbinary.args.silent = True

@mock.patch("builtins.open", Mock(return_value=StringIO(mock_config_null)), create=True)
def test_getbinary_epic_opt(self):
Expand Down
2 changes: 1 addition & 1 deletion tests/testcheckparameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def setUp(self):
side_effect=lambda gametype: MOCK_HEROIC_PATH if gametype == "epic" else MOCK_GOGDL_PATH)

# Disable zenity and logging output during testing.
checkparameters.args.silent = True
#checkparameters.args.silent = True
checkparameters.logging.disable(checkparameters.logging.CRITICAL)

@mock.patch("builtins.open", default_mock_open, create=True)
Expand Down

0 comments on commit 9d6aba9

Please sign in to comment.