Skip to content

Commit

Permalink
fix test_single_notebook_grade
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispyles committed Jul 16, 2023
1 parent a14b5cd commit dc1ba79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_grade/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

from otter.generate import main as generate
from otter.grade import main as grade
from otter.run.run_autograder.autograder_config import AutograderConfig
from otter.utils import loggers

from ..utils import TestFileManager
Expand Down Expand Up @@ -193,7 +194,8 @@ def test_single_notebook_grade(mocked_launch_grade):
"no_kill": False,
"pdf_dir": None,
"timeout": None,
"network": True
"network": True,
"config": AutograderConfig(),
}

mocked_launch_grade.return_value = [df]
Expand Down

0 comments on commit dc1ba79

Please sign in to comment.