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 d2baca5 commit f4009bdCopy full SHA for f4009bd
posthog/test/test_client.py
@@ -54,6 +54,10 @@ def test_basic_capture(self):
54
self.assertEqual(msg["distinct_id"], "distinct_id")
55
self.assertEqual(msg["properties"]["$lib"], "posthog-python")
56
self.assertEqual(msg["properties"]["$lib_version"], VERSION)
57
+ assert msg["properties"]["$python_runtime"] == "CPython"
58
+ assert msg["properties"]["$python_version"] == "3.12.4"
59
+ assert msg["properties"]["$os"] == "macOS"
60
+ assert msg["properties"]["$os_version"] == "14.5.0"
61
62
def test_basic_capture_with_uuid(self):
63
client = self.client
0 commit comments