Skip to content

Commit

Permalink
🚸 extract core functions to ozi-core package
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Jul 10, 2024
1 parent e62d70c commit 9b02455
Show file tree
Hide file tree
Showing 37 changed files with 16 additions and 6,051 deletions.
2 changes: 1 addition & 1 deletion meson.options
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ option(
value: [
'coverage',
'hypothesis',
'pytest',
# 'pytest',
'pytest-asyncio',
'pytest-cov',
'pytest-xdist',
Expand Down
12 changes: 6 additions & 6 deletions ozi/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
import sys # pragma: no cover
from dataclasses import fields # pragma: no cover

from ozi.actions import ExactMatch # pragma: no cover
from ozi.actions import check_version # pragma: no cover
from ozi.actions import info # pragma: no cover
from ozi.actions import license_expression # pragma: no cover
from ozi.actions import list_available # pragma: no cover
from ozi.actions import print_version # pragma: no cover
from ozi_core.actions import ExactMatch # pragma: no cover
from ozi_core.actions import check_version # pragma: no cover
from ozi_core.actions import info # pragma: no cover
from ozi_core.actions import license_expression # pragma: no cover
from ozi_core.actions import list_available # pragma: no cover
from ozi_core.actions import print_version # pragma: no cover
from ozi.fix.__main__ import main as fix_main # pragma: no cover
from ozi.new.__main__ import main as new_main # pragma: no cover

Expand Down
213 changes: 0 additions & 213 deletions ozi/actions.py

This file was deleted.

Loading

0 comments on commit 9b02455

Please sign in to comment.