From c27bc87afd68266da59af6e7f2b3b8cc8db13fad Mon Sep 17 00:00:00 2001 From: prathamesh Date: Wed, 10 Jun 2020 11:56:49 +0530 Subject: Allow moderator to hide test cases from the user --- yaksh/python_stdio_evaluator.py | 1 + 1 file changed, 1 insertion(+) (limited to 'yaksh/python_stdio_evaluator.py') 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. -- cgit