예제 #1
0
def run(*args):
    run_tests(**project_info)
예제 #2
0
파일: hog_grader.py 프로젝트: lrwilke/hog
def run(*args):
    run_tests(**project_info)
예제 #3
0
파일: __test.py 프로젝트: cs1301/TA-Tools
import autograder

print("Running test cases...")


def test_cases(hw):
    hw.test()

filestream = open("output.html", "w")
autograder.run_tests(test_cases, "hw1.py",
                     path="/Users/joshua/Library/Mobile Documents/com~apple~CloudDocs/School/2015-2016/CS 1301/Spring/Week 3/HW 1 - Simple Functions & Drawing",
                     output=filestream)
filestream.close()

print("Test cases succeeded!")