mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 00:55:19 +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
@ -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()
|
||||
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…
Reference in New Issue
Block a user