diff options
author | Palaparthy Adityachandra | 2020-07-02 13:28:48 +0530 |
---|---|---|
committer | GitHub | 2020-07-02 13:28:48 +0530 |
commit | b541b3aa05bf19ed6d4d28373e186883e3c4e966 (patch) | |
tree | 2d0b95b53a60ce6830fcefe115830e89e940845a /yaksh/python_stdio_evaluator.py | |
parent | c9e0d0df8dcb3a14017cef5ff01832a5345629db (diff) | |
parent | 46ef4a4a563b16bb96d09cb17496afb731e616ad (diff) | |
download | online_test-b541b3aa05bf19ed6d4d28373e186883e3c4e966.tar.gz online_test-b541b3aa05bf19ed6d4d28373e186883e3c4e966.tar.bz2 online_test-b541b3aa05bf19ed6d4d28373e186883e3c4e966.zip |
Merge pull request #719 from prathamesh920/hidden-testcases
Hide test cases
Diffstat (limited to 'yaksh/python_stdio_evaluator.py')
-rw-r--r-- | yaksh/python_stdio_evaluator.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yaksh/python_stdio_evaluator.py b/yaksh/python_stdio_evaluator.py index a1e8f72..272bf34 100644 --- a/yaksh/python_stdio_evaluator.py +++ b/yaksh/python_stdio_evaluator.py @@ -36,6 +36,7 @@ class PythonStdIOEvaluator(BaseEvaluator): self.expected_input = test_case_data.get('expected_input') self.expected_output = test_case_data.get('expected_output') self.weight = test_case_data.get('weight') + self.hidden = test_case_data.get('hidden') def teardown(self): # Delete the created file. |