Skip to content

Commit

Permalink
Version up
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroki0525 committed May 11, 2021
1 parent e171f82 commit 00904ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "autoload-module"
version = "1.2.0"
version = "1.3.0"
description = "Python Autoload Module"
authors = ["Hiroki Miyaji <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 2 additions & 0 deletions tests/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ def main():
print(loader.load_class(".tests.clazz.base.module_1"))
print(loader.load_classes("tests.clazz.packageA"))
print(loader.load_classes("tests.clazz.packageA", recursive=True))
print(loader.load_classes("tests.clazz.base.packageD"))
print(loader.load_function("./tests/func/base/func1.py"))
print(loader.load_functions("tests/func/packageA"))
print(loader.load_functions("tests/func/packageA", recursive=True))
print(loader.load_functions("tests/func/base/packageD"))
print("--- end test -------------------------")


Expand Down

0 comments on commit 00904ef

Please sign in to comment.