diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-07-14 12:18:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-14 12:18:06 -0400 |
| commit | 9b42781b5de1c5053233666ac7d5d9e553a9f81e (patch) | |
| tree | 6a1efa3d20dc29f4a51802a9c6aa6ca144e1e6da /tests/lib/cli/test_commands.py | |
| parent | 9eb03e75656a96a4ca78620633c649e00b0f883d (diff) | |
| parent | 53a37141f990c8a81e186559ebbeaaad5ddd4a04 (diff) | |
Merge pull request #794 from opensourcerouting/table-hash-ospf6-lsdb-refactor
use hash in lib/table, also refactor ospf6 lsdb code
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) |
