mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Don't force import of salt.master in integration tests
This commit is contained in:
parent
a09a3c02c4
commit
a56bed4d03
1 changed files with 6 additions and 1 deletions
|
@ -52,7 +52,6 @@ ensure_in_syspath(CODE_DIR, SALT_LIBS)
|
|||
import salt
|
||||
import salt._compat
|
||||
import salt.config
|
||||
import salt.master
|
||||
import salt.minion
|
||||
import salt.runner
|
||||
import salt.output
|
||||
|
@ -61,6 +60,12 @@ import salt.utils
|
|||
from salt.utils import fopen, get_colors
|
||||
from salt.utils.verify import verify_env
|
||||
|
||||
try:
|
||||
import salt.master
|
||||
except ImportError:
|
||||
# Not required fro raet tests
|
||||
pass
|
||||
|
||||
# Import 3rd-party libs
|
||||
import yaml
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue