Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
isidore committed Jan 28, 2024
2 parents 72f3f92 + 822bfd6 commit f088ebf
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions approvaltests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Approvaltests module."""

from .version import version_number
from .approvals import *
from .asserts import *
Expand Down
1 change: 1 addition & 0 deletions approvaltests/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Approvaltests.core module."""

from .reporter import *
from .writer import *
from .options import *
Expand Down
1 change: 1 addition & 0 deletions approvaltests/namer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Approvaltests.namer module."""

from .default_namer_factory import *
from .stack_frame_namer import *
1 change: 1 addition & 0 deletions approvaltests/pytest/pytest_plugin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from .pytest_config import set_pytest_config


def pytest_configure(config):
set_pytest_config(config)
1 change: 1 addition & 0 deletions approvaltests/reporters/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Approvaltests.reporters module."""

from .clipboard_reporter import *
from .default_reporter_factory import *
from .diff_reporter import *
Expand Down
1 change: 1 addition & 0 deletions approvaltests/scrubbers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Approvaltests.scrubbers module."""

from .scrubbers import (
create_regex_scrubber,
scrub_all_dates,
Expand Down
4 changes: 2 additions & 2 deletions setup_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def do_the_setup(package_name, package_description, required, extra_requires):
packages=find_packages(include=["approvaltests*"]),
package_data={"approvaltests": ["reporters/reporters.json"]},
entry_points={
'pytest11': [
'approvaltests_pytest = approvaltests.pytest.pytest_plugin',
"pytest11": [
"approvaltests_pytest = approvaltests.pytest.pytest_plugin",
],
},
install_requires=required,
Expand Down

0 comments on commit f088ebf

Please sign in to comment.