wexample-wex-addon-dev-flutter 0.0.58__tar.gz → 0.1.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.
Files changed (17) hide show
  1. wexample_wex_addon_dev_flutter-0.1.1/PKG-INFO +169 -0
  2. wexample_wex_addon_dev_flutter-0.1.1/README.md +149 -0
  3. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/pyproject.toml +3 -3
  4. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/workdir/flutter_package_workdir.py +4 -1
  5. wexample_wex_addon_dev_flutter-0.0.58/PKG-INFO +0 -107
  6. wexample_wex_addon_dev_flutter-0.0.58/README.md +0 -87
  7. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/__init__.py +0 -0
  8. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/__pycache__/__init__.py +0 -0
  9. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/config_value/__init__.py +0 -0
  10. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/config_value/flutter_package_readme_config_value.py +0 -0
  11. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/file/__init__.py +0 -0
  12. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/file/flutter_pubspec_yaml_file.py +0 -0
  13. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/flutter_addon_manager.py +0 -0
  14. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/py.typed +0 -0
  15. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/workdir/__init__.py +0 -0
  16. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/workdir/flutter_packages_suite_workdir.py +0 -0
  17. {wexample_wex_addon_dev_flutter-0.0.58 → wexample_wex_addon_dev_flutter-0.1.1}/src/wexample_wex_addon_dev_flutter/workdir/flutter_workdir.py +0 -0
@@ -0,0 +1,169 @@
1
+ Metadata-Version: 2.1
2
+ Name: wexample-wex-addon-dev-flutter
3
+ Version: 0.1.1
4
+ Summary: Python dev addon for wex
5
+ Author-Email: weeger <contact@wexample.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Project-URL: homepage, https://github.com/wexample/python-wex-dev-python
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: attrs>=23.1.0
13
+ Requires-Dist: cattrs>=23.1.0
14
+ Requires-Dist: wexample-filestate-flutter>=0.1.0
15
+ Requires-Dist: wexample-wex-addon-app>=1.1.0
16
+ Provides-Extra: dev
17
+ Requires-Dist: pytest; extra == "dev"
18
+ Requires-Dist: pytest-cov; extra == "dev"
19
+ Description-Content-Type: text/markdown
20
+
21
+ # wex_addon_dev_flutter
22
+
23
+ Version: 0.1.1
24
+
25
+ Python dev addon for wex
26
+
27
+ ## Table of Contents
28
+
29
+ - [Tests](#tests)
30
+ - [Suite Integration](#suite-integration)
31
+ - [Dependencies](#dependencies)
32
+ - [Versioning](#versioning)
33
+ - [License](#license)
34
+ - [Suite Integration](#suite-integration)
35
+ - [Suite Signature](#suite-signature)
36
+ - [Roadmap](#roadmap)
37
+ - [Status Compatibility](#status-compatibility)
38
+ - [Useful Links](#useful-links)
39
+ - [Migration Notes](#migration-notes)
40
+
41
+ ## Tests
42
+
43
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
44
+
45
+ ### Installation
46
+
47
+ First, install the required testing dependencies:
48
+ ```bash
49
+ .venv/bin/python -m pip install pytest pytest-cov
50
+ ```
51
+
52
+ ### Basic Usage
53
+
54
+ Run all tests with coverage:
55
+ ```bash
56
+ .venv/bin/python -m pytest --cov --cov-report=html
57
+ ```
58
+
59
+ ### Common Commands
60
+ ```bash
61
+ # Run tests with coverage for a specific module
62
+ .venv/bin/python -m pytest --cov=your_module
63
+
64
+ # Show which lines are not covered
65
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
66
+
67
+ # Generate an HTML coverage report
68
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
69
+
70
+ # Combine terminal and HTML reports
71
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
72
+
73
+ # Run specific test file with coverage
74
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
75
+ ```
76
+
77
+ ### Viewing HTML Reports
78
+
79
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
80
+
81
+ ### Coverage Threshold
82
+
83
+ To enforce a minimum coverage percentage:
84
+ ```bash
85
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
86
+ ```
87
+
88
+ This will cause the test suite to fail if coverage drops below 80%.
89
+
90
+ ## Integration in the Suite
91
+
92
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
93
+
94
+ ### Related Packages
95
+
96
+ The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
97
+
98
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
99
+
100
+ ## Dependencies
101
+
102
+ - attrs: >=23.1.0
103
+ - cattrs: >=23.1.0
104
+ - wexample-filestate-flutter: >=0.1.0
105
+ - wexample-wex-addon-app: >=1.1.0
106
+
107
+ ## Versioning & Compatibility Policy
108
+
109
+ Wexample packages follow **Semantic Versioning** (SemVer):
110
+
111
+ - **MAJOR**: Breaking changes
112
+ - **MINOR**: New features, backward compatible
113
+ - **PATCH**: Bug fixes, backward compatible
114
+
115
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
116
+
117
+ ## License
118
+
119
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
120
+
121
+ Free to use in both personal and commercial projects.
122
+
123
+ ## Integration in the Suite
124
+
125
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
126
+
127
+ ### Related Packages
128
+
129
+ The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
130
+
131
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
132
+
133
+ # About us
134
+
135
+ [Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
136
+
137
+ This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
138
+
139
+ Wexample cultivates a culture of mastery. Each package, each contribution carries the mark of a community that values precision, ethics, and innovation — a community proud to shape the future of digital craftsmanship.
140
+
141
+ ## Known Limitations & Roadmap
142
+
143
+ Current limitations and planned features are tracked in the GitHub issues.
144
+
145
+ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_flutter/issues) for upcoming features and improvements.
146
+
147
+ ## Status & Compatibility
148
+
149
+ **Maturity**: Production-ready
150
+
151
+ **Python Support**: >=3.10
152
+
153
+ **OS Support**: Linux, macOS, Windows
154
+
155
+ **Status**: Actively maintained
156
+
157
+ ## Useful Links
158
+
159
+ - **Homepage**: https://github.com/wexample/python-wex-addon-dev-flutter
160
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
161
+ - **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-flutter/issues
162
+ - **Discussions**: https://github.com/wexample/python-wex-addon-dev-flutter/discussions
163
+ - **PyPI**: [pypi.org/project/wex_addon_dev_flutter](https://pypi.org/project/wex_addon_dev_flutter/)
164
+
165
+ ## Migration Notes
166
+
167
+ When upgrading between major versions, refer to the migration guides in the documentation.
168
+
169
+ Breaking changes are clearly documented with upgrade paths and examples.
@@ -0,0 +1,149 @@
1
+ # wex_addon_dev_flutter
2
+
3
+ Version: 0.1.1
4
+
5
+ Python dev addon for wex
6
+
7
+ ## Table of Contents
8
+
9
+ - [Tests](#tests)
10
+ - [Suite Integration](#suite-integration)
11
+ - [Dependencies](#dependencies)
12
+ - [Versioning](#versioning)
13
+ - [License](#license)
14
+ - [Suite Integration](#suite-integration)
15
+ - [Suite Signature](#suite-signature)
16
+ - [Roadmap](#roadmap)
17
+ - [Status Compatibility](#status-compatibility)
18
+ - [Useful Links](#useful-links)
19
+ - [Migration Notes](#migration-notes)
20
+
21
+ ## Tests
22
+
23
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
24
+
25
+ ### Installation
26
+
27
+ First, install the required testing dependencies:
28
+ ```bash
29
+ .venv/bin/python -m pip install pytest pytest-cov
30
+ ```
31
+
32
+ ### Basic Usage
33
+
34
+ Run all tests with coverage:
35
+ ```bash
36
+ .venv/bin/python -m pytest --cov --cov-report=html
37
+ ```
38
+
39
+ ### Common Commands
40
+ ```bash
41
+ # Run tests with coverage for a specific module
42
+ .venv/bin/python -m pytest --cov=your_module
43
+
44
+ # Show which lines are not covered
45
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
46
+
47
+ # Generate an HTML coverage report
48
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
49
+
50
+ # Combine terminal and HTML reports
51
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
52
+
53
+ # Run specific test file with coverage
54
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
55
+ ```
56
+
57
+ ### Viewing HTML Reports
58
+
59
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
60
+
61
+ ### Coverage Threshold
62
+
63
+ To enforce a minimum coverage percentage:
64
+ ```bash
65
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
66
+ ```
67
+
68
+ This will cause the test suite to fail if coverage drops below 80%.
69
+
70
+ ## Integration in the Suite
71
+
72
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
73
+
74
+ ### Related Packages
75
+
76
+ The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
77
+
78
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
79
+
80
+ ## Dependencies
81
+
82
+ - attrs: >=23.1.0
83
+ - cattrs: >=23.1.0
84
+ - wexample-filestate-flutter: >=0.1.0
85
+ - wexample-wex-addon-app: >=1.1.0
86
+
87
+ ## Versioning & Compatibility Policy
88
+
89
+ Wexample packages follow **Semantic Versioning** (SemVer):
90
+
91
+ - **MAJOR**: Breaking changes
92
+ - **MINOR**: New features, backward compatible
93
+ - **PATCH**: Bug fixes, backward compatible
94
+
95
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
96
+
97
+ ## License
98
+
99
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
100
+
101
+ Free to use in both personal and commercial projects.
102
+
103
+ ## Integration in the Suite
104
+
105
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
106
+
107
+ ### Related Packages
108
+
109
+ The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
110
+
111
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
112
+
113
+ # About us
114
+
115
+ [Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
116
+
117
+ This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
118
+
119
+ Wexample cultivates a culture of mastery. Each package, each contribution carries the mark of a community that values precision, ethics, and innovation — a community proud to shape the future of digital craftsmanship.
120
+
121
+ ## Known Limitations & Roadmap
122
+
123
+ Current limitations and planned features are tracked in the GitHub issues.
124
+
125
+ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_flutter/issues) for upcoming features and improvements.
126
+
127
+ ## Status & Compatibility
128
+
129
+ **Maturity**: Production-ready
130
+
131
+ **Python Support**: >=3.10
132
+
133
+ **OS Support**: Linux, macOS, Windows
134
+
135
+ **Status**: Actively maintained
136
+
137
+ ## Useful Links
138
+
139
+ - **Homepage**: https://github.com/wexample/python-wex-addon-dev-flutter
140
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
141
+ - **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-flutter/issues
142
+ - **Discussions**: https://github.com/wexample/python-wex-addon-dev-flutter/discussions
143
+ - **PyPI**: [pypi.org/project/wex_addon_dev_flutter](https://pypi.org/project/wex_addon_dev_flutter/)
144
+
145
+ ## Migration Notes
146
+
147
+ When upgrading between major versions, refer to the migration guides in the documentation.
148
+
149
+ Breaking changes are clearly documented with upgrade paths and examples.
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "wexample-wex-addon-dev-flutter"
9
- version = "0.0.58"
9
+ version = "0.1.1"
10
10
  description = "Python dev addon for wex"
11
11
  authors = [
12
12
  { name = "weeger", email = "contact@wexample.com" },
@@ -20,8 +20,8 @@ classifiers = [
20
20
  dependencies = [
21
21
  "attrs>=23.1.0",
22
22
  "cattrs>=23.1.0",
23
- "wexample-filestate-flutter==0.0.16",
24
- "wexample-wex-addon-app==0.0.56",
23
+ "wexample-filestate-flutter>=0.1.0",
24
+ "wexample-wex-addon-app>=1.1.0",
25
25
  ]
26
26
 
27
27
  [project.readme]
@@ -14,6 +14,9 @@ if TYPE_CHECKING:
14
14
 
15
15
 
16
16
  class FlutterPackageWorkdir(FlutterWorkdir):
17
+ def _get_critical_directories(self) -> list[str]:
18
+ return ["lib"]
19
+
17
20
  def _get_readme_content(self) -> ReadmeContentConfigValue | None:
18
21
  from wexample_wex_addon_dev_flutter.config_value.flutter_package_readme_config_value import (
19
22
  FlutterPackageReadmeContentConfigValue,
@@ -21,7 +24,7 @@ class FlutterPackageWorkdir(FlutterWorkdir):
21
24
 
22
25
  return FlutterPackageReadmeContentConfigValue(workdir=self)
23
26
 
24
- def _get_suite_package_workdir_class(self) -> type[FrameworkPackageSuiteWorkdir]:
27
+ def _get_suite_workdir_class(self) -> type[FrameworkPackageSuiteWorkdir]:
25
28
  from wexample_wex_addon_dev_flutter.workdir.flutter_packages_suite_workdir import (
26
29
  FlutterPackagesSuiteWorkdir,
27
30
  )
@@ -1,107 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: wexample-wex-addon-dev-flutter
3
- Version: 0.0.58
4
- Summary: Python dev addon for wex
5
- Author-Email: weeger <contact@wexample.com>
6
- License: MIT
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: License :: OSI Approved :: MIT License
9
- Classifier: Operating System :: OS Independent
10
- Project-URL: homepage, https://github.com/wexample/python-wex-dev-python
11
- Requires-Python: >=3.10
12
- Requires-Dist: attrs>=23.1.0
13
- Requires-Dist: cattrs>=23.1.0
14
- Requires-Dist: wexample-filestate-flutter==0.0.16
15
- Requires-Dist: wexample-wex-addon-app==0.0.56
16
- Provides-Extra: dev
17
- Requires-Dist: pytest; extra == "dev"
18
- Requires-Dist: pytest-cov; extra == "dev"
19
- Description-Content-Type: text/markdown
20
-
21
- # wexample-wex-addon-dev-flutter
22
-
23
- Version: 0.0.58
24
-
25
- Python dev addon for wex
26
-
27
- ## Table of Contents
28
-
29
- - [Status Compatibility](#status-compatibility)
30
- - [Tests](#tests)
31
- - [Roadmap](#roadmap)
32
- - [Useful Links](#useful-links)
33
-
34
-
35
- ## Status & Compatibility
36
-
37
- **Maturity**: Production-ready
38
-
39
- **Python Support**: >=3.10
40
-
41
- **OS Support**: Linux, macOS, Windows
42
-
43
- **Status**: Actively maintained
44
-
45
- ## Tests
46
-
47
- This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
48
-
49
- ### Installation
50
-
51
- First, install the required testing dependencies:
52
- ```bash
53
- .venv/bin/python -m pip install pytest pytest-cov
54
- ```
55
-
56
- ### Basic Usage
57
-
58
- Run all tests with coverage:
59
- ```bash
60
- .venv/bin/python -m pytest --cov --cov-report=html
61
- ```
62
-
63
- ### Common Commands
64
- ```bash
65
- # Run tests with coverage for a specific module
66
- .venv/bin/python -m pytest --cov=your_module
67
-
68
- # Show which lines are not covered
69
- .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
70
-
71
- # Generate an HTML coverage report
72
- .venv/bin/python -m pytest --cov=your_module --cov-report=html
73
-
74
- # Combine terminal and HTML reports
75
- .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
76
-
77
- # Run specific test file with coverage
78
- .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
79
- ```
80
-
81
- ### Viewing HTML Reports
82
-
83
- After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
84
-
85
- ### Coverage Threshold
86
-
87
- To enforce a minimum coverage percentage:
88
- ```bash
89
- .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
90
- ```
91
-
92
- This will cause the test suite to fail if coverage drops below 80%.
93
-
94
- ## Known Limitations & Roadmap
95
-
96
- Current limitations and planned features are tracked in the GitHub issues.
97
-
98
- See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_flutter/issues) for upcoming features and improvements.
99
-
100
- ## Useful Links
101
-
102
- - **Homepage**: https://github.com/wexample/python-wex-addon-dev-flutter
103
- - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
104
- - **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-flutter/issues
105
- - **Discussions**: https://github.com/wexample/python-wex-addon-dev-flutter/discussions
106
- - **PyPI**: [pypi.org/project/wexample-wex-addon-dev-flutter](https://pypi.org/project/wexample-wex-addon-dev-flutter/)
107
-
@@ -1,87 +0,0 @@
1
- # wexample-wex-addon-dev-flutter
2
-
3
- Version: 0.0.58
4
-
5
- Python dev addon for wex
6
-
7
- ## Table of Contents
8
-
9
- - [Status Compatibility](#status-compatibility)
10
- - [Tests](#tests)
11
- - [Roadmap](#roadmap)
12
- - [Useful Links](#useful-links)
13
-
14
-
15
- ## Status & Compatibility
16
-
17
- **Maturity**: Production-ready
18
-
19
- **Python Support**: >=3.10
20
-
21
- **OS Support**: Linux, macOS, Windows
22
-
23
- **Status**: Actively maintained
24
-
25
- ## Tests
26
-
27
- This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
28
-
29
- ### Installation
30
-
31
- First, install the required testing dependencies:
32
- ```bash
33
- .venv/bin/python -m pip install pytest pytest-cov
34
- ```
35
-
36
- ### Basic Usage
37
-
38
- Run all tests with coverage:
39
- ```bash
40
- .venv/bin/python -m pytest --cov --cov-report=html
41
- ```
42
-
43
- ### Common Commands
44
- ```bash
45
- # Run tests with coverage for a specific module
46
- .venv/bin/python -m pytest --cov=your_module
47
-
48
- # Show which lines are not covered
49
- .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
50
-
51
- # Generate an HTML coverage report
52
- .venv/bin/python -m pytest --cov=your_module --cov-report=html
53
-
54
- # Combine terminal and HTML reports
55
- .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
56
-
57
- # Run specific test file with coverage
58
- .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
59
- ```
60
-
61
- ### Viewing HTML Reports
62
-
63
- After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
64
-
65
- ### Coverage Threshold
66
-
67
- To enforce a minimum coverage percentage:
68
- ```bash
69
- .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
70
- ```
71
-
72
- This will cause the test suite to fail if coverage drops below 80%.
73
-
74
- ## Known Limitations & Roadmap
75
-
76
- Current limitations and planned features are tracked in the GitHub issues.
77
-
78
- See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_flutter/issues) for upcoming features and improvements.
79
-
80
- ## Useful Links
81
-
82
- - **Homepage**: https://github.com/wexample/python-wex-addon-dev-flutter
83
- - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
84
- - **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-flutter/issues
85
- - **Discussions**: https://github.com/wexample/python-wex-addon-dev-flutter/discussions
86
- - **PyPI**: [pypi.org/project/wexample-wex-addon-dev-flutter](https://pypi.org/project/wexample-wex-addon-dev-flutter/)
87
-