mloda-testing 0.2.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: mloda-testing
3
+ Version: 0.2.4
4
+ Summary: Test utilities for mloda plugin development
5
+ Author-email: Tom Kaltofen <info@mloda.ai>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://mloda.ai
8
+ Project-URL: Repository, https://github.com/mloda-ai/mloda-registry
9
+ Requires-Python: >=3.10
10
+ Requires-Dist: mloda>=0.4.3
11
+ Requires-Dist: pytest
12
+ Provides-Extra: dev
13
+ Requires-Dist: pytest; extra == "dev"
@@ -0,0 +1,27 @@
1
+ # AUTO-GENERATED by scripts/generate_pyproject.py
2
+ # Do not edit directly - modify config/shared.toml or config/packages.toml instead
3
+
4
+ [build-system]
5
+ requires = ["setuptools>=61.0"]
6
+ build-backend = "setuptools.build_meta"
7
+
8
+ [project]
9
+ name = "mloda-testing"
10
+ version = "0.2.4"
11
+ description = "Test utilities for mloda plugin development"
12
+ license = "Apache-2.0"
13
+ authors = [{ name = "Tom Kaltofen", email = "info@mloda.ai" }]
14
+ dependencies = ["mloda>=0.4.3", "pytest"]
15
+ requires-python = ">=3.10"
16
+
17
+ [project.optional-dependencies]
18
+ dev = ["pytest"]
19
+
20
+ [project.urls]
21
+ Homepage = "https://mloda.ai"
22
+ Repository = "https://github.com/mloda-ai/mloda-registry"
23
+
24
+ [tool.setuptools.packages.find]
25
+ where = ["../.."]
26
+ include = ["mloda.testing", "mloda.testing.*"]
27
+ namespaces = true
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,8 @@
1
+ """Tests for mloda.testing package."""
2
+
3
+ from mloda.testing.base import FeatureGroupTestBase
4
+
5
+
6
+ def test_feature_group_test_base_import() -> None:
7
+ """Verify FeatureGroupTestBase can be imported."""
8
+ assert FeatureGroupTestBase is not None