summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/lib/cli/test_commands.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/lib/cli/test_commands.py b/tests/lib/cli/test_commands.py
index 85e34fa15..bda0bbac4 100644
--- a/tests/lib/cli/test_commands.py
+++ b/tests/lib/cli/test_commands.py
@@ -2,7 +2,10 @@ import frrtest
import pytest
import os
-@pytest.mark.skipif('QUAGGA_TEST_COMMANDS' not in os.environ,
- reason='QUAGGA_TEST_COMMANDS not set')
class TestCommands(frrtest.TestRefOut):
program = './test_commands'
+
+ @pytest.mark.skipif('QUAGGA_TEST_COMMANDS' not in os.environ,
+ reason='QUAGGA_TEST_COMMANDS not set')
+ def test_refout(self):
+ return super(TestCommands, self).test_refout(self)