Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

from typing import List

project = "git-autograder"
copyright = "2025, Jiahao Woo"
author = "Jiahao Woo"
Expand All @@ -14,13 +16,10 @@
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.viewcode"
]
extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode"]

templates_path = ["_templates"]
exclude_patterns = []
exclude_patterns: List[str] = []


# -- Options for HTML output -------------------------------------------------
Expand Down
8 changes: 0 additions & 8 deletions src/git_autograder/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
__all__ = [
"set_env",
"assert_output",
"GitAutograderException",
"GitAutograderInvalidStateException",
"GitAutograderWrongAnswerException",
"GitAutograderTestLoader",
"GitAutograderRepo",
"GitAutograderRepoBase",
"GitAutograderStatus",
Expand All @@ -28,8 +25,3 @@
from .repo.repo import GitAutograderRepo
from .repo.repo_base import GitAutograderRepoBase
from .status import GitAutograderStatus
from .test_utils import (
GitAutograderTestLoader,
assert_output,
set_env,
)
161 changes: 0 additions & 161 deletions src/git_autograder/test_utils.py

This file was deleted.