bud-runner 1.0.0__py3-none-any.whl
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.
- bud_runner/__init__.py +25 -0
- bud_runner/__main__.py +13 -0
- bud_runner/api_client.py +675 -0
- bud_runner/auth.py +288 -0
- bud_runner/cli.py +903 -0
- bud_runner/junit_reporter.py +248 -0
- bud_runner/runner_manager.py +205 -0
- bud_runner/test_executor.py +374 -0
- bud_runner/versioning.py +24 -0
- bud_runner-1.0.0.dist-info/METADATA +424 -0
- bud_runner-1.0.0.dist-info/RECORD +15 -0
- bud_runner-1.0.0.dist-info/WHEEL +5 -0
- bud_runner-1.0.0.dist-info/entry_points.txt +2 -0
- bud_runner-1.0.0.dist-info/licenses/LICENSE +669 -0
- bud_runner-1.0.0.dist-info/top_level.txt +1 -0
bud_runner/__init__.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"""
|
|
2
|
+
bud_runner - CLI tool for test execution and CI/CD integration.
|
|
3
|
+
|
|
4
|
+
A command-line interface for:
|
|
5
|
+
- running test suites
|
|
6
|
+
- registering runners with the Bud backend
|
|
7
|
+
- creating test runs
|
|
8
|
+
- generating JUnit XML reports
|
|
9
|
+
|
|
10
|
+
Usage:
|
|
11
|
+
python -m bud_runner add-test-run --test-case-list MyTests.TEST_LIST
|
|
12
|
+
python -m bud_runner run-tests --test-case-list MyTests.TEST_LIST
|
|
13
|
+
python -m bud_runner register --username runner1
|
|
14
|
+
|
|
15
|
+
Copyright (c) 2026 EmbedLabs
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
from bud_runner.cli import app
|
|
19
|
+
from bud_runner.versioning import read_package_version
|
|
20
|
+
|
|
21
|
+
__version__ = read_package_version()
|
|
22
|
+
__author__ = "EmbedLabs"
|
|
23
|
+
__email__ = "dev@embedlabs.net"
|
|
24
|
+
|
|
25
|
+
__all__ = ["app"]
|
bud_runner/__main__.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Entry point for running bud_runner as a module.
|
|
3
|
+
|
|
4
|
+
Usage:
|
|
5
|
+
python -m bud_runner add_test_run --test-case-list BudTests.SUITE_LIST
|
|
6
|
+
python -m bud_runner run_tests --test-case-list BudTests.SUITE_LIST
|
|
7
|
+
python -m bud_runner register --username runner1
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from bud_runner.cli import main
|
|
11
|
+
|
|
12
|
+
if __name__ == "__main__":
|
|
13
|
+
main()
|