Skip to content

Commit

Permalink
Fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
merschformann committed Nov 27, 2023
1 parent 1801933 commit bbd223e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nextmv/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .hello import main

__all__ = [main]
10 changes: 10 additions & 0 deletions test/test_hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import nextmv


def test_hello():
nextmv.main()


if __name__ == "__main__":
test_hello()
print("Everything passed")

0 comments on commit bbd223e

Please sign in to comment.