pytestflow 0.2.0__tar.gz → 0.2.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.
- {pytestflow-0.2.0 → pytestflow-0.2.1}/PKG-INFO +3 -1
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pyproject.toml +4 -2
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow.egg-info/PKG-INFO +3 -1
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow.egg-info/requires.txt +2 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/MANIFEST.in +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/config.yaml +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/custom_step_types/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/custom_step_types/custom_step_template.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/process_models/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/process_models/reporting/README.md +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/process_models/reporting/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/process_models/reporting/default_report.html.j2 +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/process_models/reporting/html_report.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/process_models/sequential_model.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/test_sequences/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/test_sequences/basic_sequence.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/test_sequences/message_box_and_flow_control.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/test_sequences/motherboard_test_sequence.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/test_sequences/step_types_quickstart.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/README.md +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/event_bus.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/frontend/assets/full_logo-D1DRTUt8.svg +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/frontend/assets/index-480TOyh4.js +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/frontend/assets/index-qEI3VAQU.css +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/frontend/index.html +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/frontend/logo.svg +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/handlers.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/report_manager.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/sequences_info.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/start_backend.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/uuids_handler.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/websocket_gateway.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/cli.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/config/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/config/config_manager.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/core/README.md +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/core/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/core/context.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/core/core.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/core/pytestflow_states.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/core/runtime_control.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/core/seq_file_runner.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/core/sequence.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/core/utils.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/flow_utils/README.md +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/flow_utils/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/flow_utils/conditions.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/flow_utils/transitions.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/starter_here.md +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/README.md +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/__init__.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/action_step.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/common.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/df_numeric_limits.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/flow_control.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/message_pop_up.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/numeric_limit.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/pass_fail.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/string_check.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/steps/waveform_limit.py +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow.egg-info/SOURCES.txt +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow.egg-info/dependency_links.txt +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow.egg-info/entry_points.txt +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow.egg-info/top_level.txt +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/readme.md +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/setup.cfg +0 -0
- {pytestflow-0.2.0 → pytestflow-0.2.1}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytestflow
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Test automation framework inspired by NI TestStand, built on Prefect
|
|
5
5
|
Author-email: Alberto Manzoni <alb.manzoni@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/Alberto-Manzoni/PyTestFlow
|
|
@@ -18,6 +18,8 @@ Classifier: Topic :: Software Development :: Testing
|
|
|
18
18
|
Requires-Python: >=3.10
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
Requires-Dist: prefect==3.6.24
|
|
21
|
+
Requires-Dist: fastapi==0.136.0
|
|
22
|
+
Requires-Dist: starlette==1.0.0
|
|
21
23
|
Requires-Dist: pandas
|
|
22
24
|
Requires-Dist: numpy
|
|
23
25
|
Requires-Dist: rich
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pytestflow"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "Test automation framework inspired by NI TestStand, built on Prefect"
|
|
9
9
|
readme = "readme.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -12,7 +12,9 @@ authors = [
|
|
|
12
12
|
{ name = "Alberto Manzoni", email = "alb.manzoni@gmail.com" },
|
|
13
13
|
]
|
|
14
14
|
dependencies = [
|
|
15
|
-
"prefect==3.6.24",
|
|
15
|
+
"prefect==3.6.24",
|
|
16
|
+
"fastapi==0.136.0",
|
|
17
|
+
"starlette==1.0.0",
|
|
16
18
|
"pandas",
|
|
17
19
|
"numpy",
|
|
18
20
|
"rich",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytestflow
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Test automation framework inspired by NI TestStand, built on Prefect
|
|
5
5
|
Author-email: Alberto Manzoni <alb.manzoni@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/Alberto-Manzoni/PyTestFlow
|
|
@@ -18,6 +18,8 @@ Classifier: Topic :: Software Development :: Testing
|
|
|
18
18
|
Requires-Python: >=3.10
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
Requires-Dist: prefect==3.6.24
|
|
21
|
+
Requires-Dist: fastapi==0.136.0
|
|
22
|
+
Requires-Dist: starlette==1.0.0
|
|
21
23
|
Requires-Dist: pandas
|
|
22
24
|
Requires-Dist: numpy
|
|
23
25
|
Requires-Dist: rich
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/custom_step_types/custom_step_template.py
RENAMED
|
File without changes
|
|
File without changes
|
{pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/process_models/reporting/README.md
RENAMED
|
File without changes
|
{pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/process_models/reporting/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/process_models/reporting/html_report.py
RENAMED
|
File without changes
|
{pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/process_models/sequential_model.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytestflow-0.2.0 → pytestflow-0.2.1}/bootstrap_templates/test_sequences/step_types_quickstart.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytestflow-0.2.0 → pytestflow-0.2.1}/pytestflow/backend/frontend/assets/full_logo-D1DRTUt8.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|