Skip to content

Commit

Permalink
Merge pull request #4 from sandialabs/change-directory-structure
Browse files Browse the repository at this point in the history
chore: Change directory structure
  • Loading branch information
jmgate authored Feb 15, 2024
2 parents a8b7047 + 364d29b commit 9461a22
Show file tree
Hide file tree
Showing 64 changed files with 75 additions and 410 deletions.
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

0 comments on commit 9461a22

Please sign in to comment.