mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Skip cleaning up syndic stuff so we don't have issues with raet tests
before the syndic stuff is all ready for testing
This commit is contained in:
parent
94bee6758a
commit
af1a21691a
1 changed files with 10 additions and 4 deletions
|
@ -548,10 +548,16 @@ class TestDaemon(object):
|
|||
self.minion_process.join()
|
||||
salt.master.clean_proc(self.master_process, wait_for_kill=50)
|
||||
self.master_process.join()
|
||||
salt.master.clean_proc(self.syndic_process, wait_for_kill=50)
|
||||
self.syndic_process.join()
|
||||
salt.master.clean_proc(self.smaster_process, wait_for_kill=50)
|
||||
self.smaster_process.join()
|
||||
try:
|
||||
salt.master.clean_proc(self.syndic_process, wait_for_kill=50)
|
||||
self.syndic_process.join()
|
||||
except AttributeError:
|
||||
pass
|
||||
try:
|
||||
salt.master.clean_proc(self.smaster_process, wait_for_kill=50)
|
||||
self.smaster_process.join()
|
||||
except AttributeError:
|
||||
pass
|
||||
self._exit_mockbin()
|
||||
self._exit_ssh()
|
||||
self._clean()
|
||||
|
|
Loading…
Add table
Reference in a new issue