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 6427a9f commit 7c5fb17Copy full SHA for 7c5fb17
.github/workflows/unittests.yml
@@ -1,4 +1,4 @@
1
-name: Test Python SDK
+name: Test
2
3
on:
4
pull_request:
plugin/plugin.py
@@ -15,6 +15,7 @@
15
TEAM_NAME = "cloudquery"
16
PLUGIN_KIND = "source"
17
18
+
19
class ExamplePlugin(plugin.Plugin):
20
def __init__(self) -> None:
21
super().__init__(
tests/package.py
@@ -3,6 +3,7 @@
from cloudquery.sdk import serve
from plugin import ExamplePlugin
5
6
7
def test_plugin_package():
8
p = ExamplePlugin()
9
cmd = serve.PluginCommand(p)
@@ -50,7 +51,7 @@ def test_plugin_package():
50
51
"primary_key": False,
52
"not_null": False,
53
"unique": False,
- }
54
+ },
55
],
56
},
57
]
0 commit comments