Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hejamu committed Mar 28, 2024
1 parent 21afcb0 commit f1f0a37
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
9 changes: 7 additions & 2 deletions tests/run_tester
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/opt/homebrew/opt/[email protected]/bin/python3.11
# -*- coding: utf-8 -*-
#!/usr/bin/env python3
# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding:utf-8 -*-
#
# Copyright (c) 2024 Authors and contributors
#
# Released under the GNU Public Licence, v2 or any higher version
# SPDX-License-Identifier: GPL-2.0-or-later
import re
import sys

Expand Down
9 changes: 9 additions & 0 deletions tests/tester/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
#!/usr/bin/env python3
# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding:utf-8 -*-
#
# Copyright (c) 2024 Authors and contributors
#
# Released under the GNU Public Licence, v2 or any higher version
# SPDX-License-Identifier: GPL-2.0-or-later
"""Make the tester module available to mdacli."""

from .tester_class import Tester # noqa
7 changes: 5 additions & 2 deletions tests/tester/tester_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# Released under the GNU Public Licence, v2 or any higher version
# SPDX-License-Identifier: GPL-2.0-or-later
"""Test module for mdacli."""
"""Mock module for mdacli to test logging."""

import logging

Expand All @@ -16,7 +16,10 @@


class Tester(AnalysisBase):
"""Test class for mdacli. I AM STUPID.
"""Mock class for mdacli. Implements only the minimum requirements.
Currently only logs messages at different levels to check the verbosity and
debug flags in the CLI.
Parameters
----------
Expand Down

0 comments on commit f1f0a37

Please sign in to comment.