From cbbf41cbb3cb8de05f21969dc497412c82573025 Mon Sep 17 00:00:00 2001 From: Christian Franke Date: Fri, 3 Feb 2017 16:58:58 +0100 Subject: tests: add pytest testrunners Signed-off-by: Christian Franke --- tests/lib/cli/test_commands.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/lib/cli/test_commands.py (limited to 'tests/lib/cli/test_commands.py') diff --git a/tests/lib/cli/test_commands.py b/tests/lib/cli/test_commands.py new file mode 100644 index 0000000000..85e34fa15b --- /dev/null +++ b/tests/lib/cli/test_commands.py @@ -0,0 +1,8 @@ +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' -- cgit v1.2.3