Skip to content

Commit

Permalink
Pass check param in test
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Dec 11, 2024
1 parent cd7c12a commit 965bd35
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/dummy_game_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,21 +58,21 @@ def test_dummy_game_instance_calls(self,
'--set-default', '--headless', 'dummy',
PosixPath('/game-instance'), '1.8.1',
'--MakingHistory', '1.1.0', '--BreakingGround', '1.0.0'],
capture_output=True),
capture_output=True, check=False),
call(['mono', PosixPath('/ckan.exe'), 'compat', 'add', '1.8.0'],
capture_output=True),
capture_output=True, check=False),
call(['mono', PosixPath('/ckan.exe'), 'cache', 'set', PosixPath('/cache'), '--headless'],
capture_output=True),
capture_output=True, check=False),
call(['mono', PosixPath('/ckan.exe'), 'cache', 'setlimit', '5000'],
capture_output=True),
capture_output=True, check=False),
call(['mono', PosixPath('/ckan.exe'), 'repo', 'add',
'local', 'file:///repo/metadata.tar.gz'],
capture_output=True),
capture_output=True, check=False),
call(['mono', PosixPath('/ckan.exe'), 'repo', 'priority',
'local', '0'],
capture_output=True),
capture_output=True, check=False),
call(['mono', PosixPath('/ckan.exe'), 'update'],
capture_output=True),
capture_output=True, check=False),
call(['mono', PosixPath('/ckan.exe'), 'instance', 'forget', 'dummy'],
capture_output=True)
capture_output=True, check=False)
])

0 comments on commit 965bd35

Please sign in to comment.