autohilt 0.0.1__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.
- autohilt-0.0.1/.gitignore +11 -0
- autohilt-0.0.1/PKG-INFO +31 -0
- autohilt-0.0.1/README.md +16 -0
- autohilt-0.0.1/pyproject.toml +31 -0
- autohilt-0.0.1/src/autohilt/__init__.py +3 -0
- autohilt-0.0.1/src/autohilt/cli.py +15 -0
- autohilt-0.0.1/src/autohilt/plugin.py +8 -0
autohilt-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: autohilt
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: autoHILT test executor — hardware-in-loop pytest fixtures generated from your drawn test station
|
|
5
|
+
Project-URL: Homepage, https://autohilt.com
|
|
6
|
+
Author-email: RML Consulting <hello@autohilt.com>
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Framework :: Pytest
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Topic :: Software Development :: Embedded Systems
|
|
11
|
+
Classifier: Topic :: Software Development :: Testing
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Requires-Dist: pytest<9,>=7
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# autohilt
|
|
17
|
+
|
|
18
|
+
The test executor for [autoHILT](https://autohilt.com) — automated
|
|
19
|
+
hardware-in-loop testing for embedded systems.
|
|
20
|
+
|
|
21
|
+
autoHILT turns a drawing of your test station into pytest fixtures: draw the
|
|
22
|
+
station (MCU, debugger, relays, power) in the autoHILT canvas, publish it, and
|
|
23
|
+
this package brings those components to life as fixtures named after your own
|
|
24
|
+
drawing — `my_mcu`, `cli`, `dut_power` — in plain, unmodified pytest.
|
|
25
|
+
|
|
26
|
+
This is an early development release that reserves the package name and
|
|
27
|
+
establishes the skeleton: the pytest integration point and the `autohilt`
|
|
28
|
+
command-line tool. Functional releases follow.
|
|
29
|
+
|
|
30
|
+
- Homepage: https://autohilt.com
|
|
31
|
+
- Contact: hello@autohilt.com
|
autohilt-0.0.1/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# autohilt
|
|
2
|
+
|
|
3
|
+
The test executor for [autoHILT](https://autohilt.com) — automated
|
|
4
|
+
hardware-in-loop testing for embedded systems.
|
|
5
|
+
|
|
6
|
+
autoHILT turns a drawing of your test station into pytest fixtures: draw the
|
|
7
|
+
station (MCU, debugger, relays, power) in the autoHILT canvas, publish it, and
|
|
8
|
+
this package brings those components to life as fixtures named after your own
|
|
9
|
+
drawing — `my_mcu`, `cli`, `dut_power` — in plain, unmodified pytest.
|
|
10
|
+
|
|
11
|
+
This is an early development release that reserves the package name and
|
|
12
|
+
establishes the skeleton: the pytest integration point and the `autohilt`
|
|
13
|
+
command-line tool. Functional releases follow.
|
|
14
|
+
|
|
15
|
+
- Homepage: https://autohilt.com
|
|
16
|
+
- Contact: hello@autohilt.com
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "autohilt"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "autoHILT test executor — hardware-in-loop pytest fixtures generated from your drawn test station"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
authors = [{ name = "RML Consulting", email = "hello@autohilt.com" }]
|
|
12
|
+
dependencies = ["pytest>=7,<9"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Framework :: Pytest",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Topic :: Software Development :: Testing",
|
|
18
|
+
"Topic :: Software Development :: Embedded Systems",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://autohilt.com"
|
|
23
|
+
|
|
24
|
+
[project.entry-points.pytest11]
|
|
25
|
+
autohilt = "autohilt.plugin"
|
|
26
|
+
|
|
27
|
+
[project.scripts]
|
|
28
|
+
autohilt = "autohilt.cli:main"
|
|
29
|
+
|
|
30
|
+
[tool.hatch.build.targets.wheel]
|
|
31
|
+
packages = ["src/autohilt"]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""The ``autohilt`` command-line tool."""
|
|
2
|
+
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
from . import __version__
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def main() -> int:
|
|
9
|
+
print(f"autohilt {__version__} — autoHILT test executor (early development)")
|
|
10
|
+
print("https://autohilt.com")
|
|
11
|
+
return 0
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
if __name__ == "__main__":
|
|
15
|
+
sys.exit(main())
|