We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a5dff4 commit c8e822dCopy full SHA for c8e822d
.gitignore
@@ -1,2 +1,4 @@
1
docker-volumes
2
*.pyc
3
+venv
4
+.vscode
tests/test_example_module.py
@@ -0,0 +1,9 @@
+import unittest
+
+from python_package import example_module
5
6
+class TestSomeFunction(unittest.TestCase):
7
+ def test_basic(self):
8
+ result = example_module.some_function()
9
+ self.assertIsInstance(result, str)
0 commit comments