Skip to content
Snippets Groups Projects
deploy_autolab_b_stripped.py 797 B
Newer Older
  • Learn to ignore specific revisions
  • tuhe's avatar
    tuhe committed
    # autolab_example_py_upload/instructor/cs102_autolab/deploy_autolab.py
    # Step 2: Create the cs102.tar file from the grade scripts. 
    instructor_base = f"."
    student_base = f"../../students/cs102_autolab"
    
    from report2_test import Report2
    # INSTRUCTOR_GRADE_FILE =
    output_tar = new_deploy_assignment("cs105h",  # Autolab name of assignment (and name of .tar file)
                                   INSTRUCTOR_BASE=instructor_base,
                                   INSTRUCTOR_GRADE_FILE=f"{instructor_base}/report2_test_grade.py",
                                   STUDENT_BASE=student_base,
                                   STUDENT_GRADE_FILE=f"{instructor_base}/report2_test.py",
                                   autograde_image_tag=autograde_image,
                                   homework_file="homework1.py")