We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14ea6f9 commit 5072a15Copy full SHA for 5072a15
tests/test_commands.py
@@ -1,4 +1,7 @@
1
import os
2
+import sys
3
+
4
+import pytest
5
6
7
def test_command_dump_config(capfd):
@@ -23,6 +26,10 @@ def test_command_dump_samplefuncs(capfd):
23
26
24
27
def test_command_standalone_plugin(capfd):
25
28
29
+ # FIXME: Make it work on Windows.
30
+ if sys.platform.startswith("win"):
31
+ raise pytest.xfail("Skipping test, fails on Windows")
32
33
command = """mqttwarn --plugin=log --options='{"message": "Hello world", "addrs": ["crit"]}'"""
34
35
os.system(command)
0 commit comments