Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Change directory structure #4

Merged
merged 1 commit into from
Feb 15, 2024
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
10 changes: 5 additions & 5 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[run]
omit =
*/tests/*
*/test/*
*/venv*
branch = True
dynamic_context = test_function
Expand All @@ -18,14 +18,14 @@ exclude_lines =
if False:

[html]
directory = tests/htmlcov
title = ShellLogger Coverage Report
directory = test/htmlcov
title = shell-logger Coverage Report
show_contexts = True

[xml]
output = tests/coverage.xml
output = test/coverage.xml

[json]
output = tests/coverage.json
output = test/coverage.json
pretty_print = True
show_contexts = True
277 changes: 0 additions & 277 deletions .gitlab-ci.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/ShellLogger.iml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/inspectionProfiles/profiles_settings.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

2 changes: 1 addition & 1 deletion doc/source/abstract_method.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AbstractMethod
==============

.. autoexception:: shelllogger.abstract_method.AbstractMethod
.. autoexception:: shell_logger.abstract_method.AbstractMethod
:noindex:
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
from pathlib import Path
import sys

sys.path.append(str(Path.cwd().parent.parent.resolve() / "src"))
sys.path.append(str(Path.cwd().parent.parent.resolve() / "shell_logger"))

# -- Project information -----------------------------------------------------

project = "ShellLogger"
project = "shell-logger"
copyright = (
"2024, National Technology & Engineering Solutions of Sandia, LLC "
"(NTESS)"
Expand Down
2 changes: 1 addition & 1 deletion doc/source/html_utilities.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ HTML Utilities
The following are a number of utility functions used to generate the HTML log
file produced by :class:`ShellLogger`.

.. automodule:: shelllogger.html_utilities
.. automodule:: shell_logger.html_utilities
:noindex:
Loading
Loading