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 4b4a37f commit d8279f1Copy full SHA for d8279f1
1 file changed
lab/vtsh/test/test_redirection.py
@@ -1,6 +1,12 @@
1
+import unittest
2
+
3
from base_test import BaseShellTest
4
5
+REQUIRED_REDIRECTION_FUNCTIONALITY = False
6
7
+@unittest.skipIf(not REQUIRED_REDIRECTION_FUNCTIONALITY,
8
+ ("Redirection functionality is not required in the task. "
9
+ "This functionality is for an additional task."))
10
class TestShellRedirection(BaseShellTest):
11
def test_simple_redirection(self):
12
self.add_test_file("aaa")
0 commit comments