Skip to content

Commit

Permalink
class name DlsLogformatter
Browse files Browse the repository at this point in the history
  • Loading branch information
David Erb committed Jan 30, 2023
1 parent 439d47b commit 2e29a38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:

- name: Test module --version works using the installed wheel
# If more than one module in src/ replace with module name to test
run: python -m $(ls src | head -1) --version
run: python -m $(ls src | grep -v egg-info | head -1) --version

container:
needs: [lint, dist, test]
Expand Down Expand Up @@ -212,4 +212,4 @@ jobs:
with:
password: ${{ secrets.PYPI_TOKEN }}

# dae_devops_fingerprint d05711f3373ed522dc9b751401a29c68
# dae_devops_fingerprint f051e2d0b0a34c4a8593c9e0436087ec
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pytest

# Formatting of testing log messages.
from dls_logformatter.dls_logformatter import DlsLogform
from dls_logformatter.dls_logformatter import DlsLogformatter

logger = logging.getLogger(__name__)

Expand All @@ -24,7 +24,7 @@ def constants(request):
def logging_setup():
# print("")

formatter = DlsLogform(type="long")
formatter = DlsLogformatter(type="long")
logger = logging.StreamHandler()
logger.setFormatter(formatter)
logging.getLogger().addHandler(logger)
Expand Down

0 comments on commit 2e29a38

Please sign in to comment.