mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #58292 from krionbsd/increatefbsd
Skip beacon test on FreeBSD
This commit is contained in:
commit
6ae51017ea
1 changed files with 4 additions and 3 deletions
|
@ -1,6 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import absolute_import, print_function, unicode_literals
|
||||
|
||||
import logging
|
||||
import os
|
||||
import shutil
|
||||
|
@ -26,6 +23,10 @@ log = logging.getLogger(__name__)
|
|||
|
||||
|
||||
@skipIf(not HAS_PYINOTIFY, "pyinotify is not available")
|
||||
@skipIf(
|
||||
salt.utils.platform.is_freebsd(),
|
||||
"Skip on FreeBSD, IN_CREATE event is not supported",
|
||||
)
|
||||
class TestBeaconsInotify(MultimasterModuleCase, AdaptedConfigurationTestCaseMixin):
|
||||
"""
|
||||
Validate the inotify beacon in multimaster environment
|
||||
|
|
Loading…
Add table
Reference in a new issue