Skip to content

Commit 3f0d14e

Browse files
committed
remove redundant code
1 parent 047260f commit 3f0d14e

File tree

6 files changed

+9
-126
lines changed

6 files changed

+9
-126
lines changed

.github/workflows/code_test.yml

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

Pipfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,5 @@ softioc = {editable = true, extras = ["dev"], path = "."}
1010
softioc = {editable = true, extras = ["useful"], path = "."}
1111

1212
[scripts]
13-
# Do flake8 here so it doesn't happen in the container in CI
14-
tests = "python -m pytest --flake8"
1513
docs = "sphinx-build -EWT --keep-going docs build/html"
1614
gitclean = "git clean -fdX"

docs/conf.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,9 @@
8383
# The master toctree document.
8484
master_doc = "index"
8585

86-
# List of patterns, relative to source directory, that match files and
87-
# directories to ignore when looking for source files.
88-
# These patterns also affect html_static_path and html_extra_path
89-
exclude_patterns = ["_build"]
86+
# List of directories, relative to source directory, that shouldn't be searched
87+
# for source files.
88+
exclude_trees = ["_build"]
9089

9190
# The name of the Pygments (syntax highlighting) style to use.
9291
pygments_style = "sphinx"
@@ -108,12 +107,17 @@
108107
# Sphinx are currently "default" and "sphinxdoc".
109108
try:
110109
import sphinx_rtd_theme_github_versions
110+
111111
html_theme = "sphinx_rtd_theme_github_versions"
112112
except ImportError:
113113
html_theme = "default"
114114

115115
# Options for the sphinx rtd theme
116-
html_theme_options = dict(style_nav_header_background="rgb(7, 43, 93)")
116+
html_theme_options = {
117+
"style_nav_header_background": "rgb(7, 43, 93)",
118+
"versions_branches": "main master",
119+
"github_org": "dls-controls",
120+
}
117121

118122
# Add any paths that contain custom static files (such as style sheets) here,
119123
# relative to this directory. They are copied after the builtin static files,

epics_containers/__main__.py

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

epics_containers/cli.py

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

tests/test_boilerplate_removed.py

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

0 commit comments

Comments
 (0)