Skip to content

Commit

Permalink
Fix test discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
janezd committed Apr 21, 2024
1 parent 4daee52 commit c53545f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.pypi')).read()

ENTRY_POINTS = {
'orange3.addon': ('educational = orangecontrib.pumice', ),
'orange3.addon': ('pumice = orangecontrib.pumice', ),
"orange.widgets": ("Pumice = orangecontrib.pumice.widgets", ),
"orange.canvas.help": (
'html-index = orangecontrib.prototypes.widgets:WIDGET_HELP_PATH'),
Expand All @@ -20,6 +20,7 @@
setup(
name="Orange3-Pumice",
description="Educational widgets for project Pumice",
license="BSD",
version=VERSION,
author='Bioinformatics Laboratory, FRI UL',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ commands_pre =
# freeze environment
pip freeze
commands =
coverage run -m unittest discover -v --start-directory orangecontrib/educational
coverage run -m unittest discover -v --start-directory orangecontrib/pumice
coverage report

0 comments on commit c53545f

Please sign in to comment.