diff options
| author | tmartiro <tigran@xcloudnetworks.com> | 2017-07-17 17:23:20 +0300 |
|---|---|---|
| committer | tmartiro <tigran@xcloudnetworks.com> | 2017-07-17 17:23:20 +0300 |
| commit | a8a4fa8954fd3b4e5b4f9bc9173eef79a827a8ff (patch) | |
| tree | d36bcef7839e7297f05ab420899a701b124341b6 /tests/lib/cli/test_commands.py | |
| parent | 22fcb8b3ad0dea4487ef9365ad4ab514b7a19e75 (diff) | |
| parent | d62a17aedeb0eebdba98238874bb13d62c48dbf9 (diff) | |
merge with upstream
Diffstat (limited to 'tests/lib/cli/test_commands.py')
| -rw-r--r-- | tests/lib/cli/test_commands.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/lib/cli/test_commands.py b/tests/lib/cli/test_commands.py index 85e34fa15b..bda0bbac44 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) |
