Skip to content

Commit bfd514e

Browse files
committed
Delete all test_utils
The test_utils should be embedded in the exercises
1 parent 63ce0ab commit bfd514e

File tree

3 files changed

+4
-174
lines changed

3 files changed

+4
-174
lines changed

docs/source/conf.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
# -- Project information -----------------------------------------------------
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

9+
from typing import List
10+
911
project = "git-autograder"
1012
copyright = "2025, Jiahao Woo"
1113
author = "Jiahao Woo"
@@ -14,13 +16,10 @@
1416
# -- General configuration ---------------------------------------------------
1517
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1618

17-
extensions = [
18-
"sphinx.ext.autodoc",
19-
"sphinx.ext.viewcode"
20-
]
19+
extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode"]
2120

2221
templates_path = ["_templates"]
23-
exclude_patterns = []
22+
exclude_patterns: List[str] = []
2423

2524

2625
# -- Options for HTML output -------------------------------------------------

src/git_autograder/__init__.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
__all__ = [
2-
"set_env",
3-
"assert_output",
42
"GitAutograderException",
53
"GitAutograderInvalidStateException",
64
"GitAutograderWrongAnswerException",
7-
"GitAutograderTestLoader",
85
"GitAutograderRepo",
96
"GitAutograderRepoBase",
107
"GitAutograderStatus",
@@ -28,8 +25,3 @@
2825
from .repo.repo import GitAutograderRepo
2926
from .repo.repo_base import GitAutograderRepoBase
3027
from .status import GitAutograderStatus
31-
from .test_utils import (
32-
GitAutograderTestLoader,
33-
assert_output,
34-
set_env,
35-
)

src/git_autograder/test_utils.py

Lines changed: 0 additions & 161 deletions
This file was deleted.

0 commit comments

Comments
 (0)