Spaces:
Running
Running
File size: 1,379 Bytes
41e79e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
import argparse
from sys import exit
import subprocess
from pathlib import Path
from src.generic_eval import main as gmain
def eval_script(path: Path):
try:
# Assumes exit-code 0 is all okay
# Need check=True for Ruby to pass errors to CalledProcessError
output = subprocess.run(
["ruby", path], check=True, capture_output=True, timeout=5
)
if output.returncode == 0:
status = "OK"
out = output.stderr
error = output.stdout
returncode = 0
else:
raise Exception("there's an issue with check = True for Ruby, INVESTIGATE!")
except subprocess.TimeoutExpired as exc:
status = "Timeout"
out = exc.stdout
error = exc.stderr
returncode = -1
except subprocess.CalledProcessError as exc:
returncode = exc.returncode
out = exc.stdout
error = exc.stderr
#failure with code 1 but no error message is an Exception from Failed tests
if len(error) < 1:
status = "Exception"
else: #everything that prints out an error message is a SyntaxError
status = "SyntaxError"
return {
"status": status,
"exit_code": returncode,
"stdout": out,
"stderr": error,
}
if __name__ == "__main__":
gmain(eval_script, 'Ruby', '.rb')
|