File tree Expand file tree Collapse file tree 8 files changed +31
-38
lines changed
Expand file tree Collapse file tree 8 files changed +31
-38
lines changed Original file line number Diff line number Diff line change @@ -11,5 +11,17 @@ __pycache__
1111coverage.json
12123.2.0.md
1313.coverage
14- test_client.py
14+ / test_client.py
1515openapi.json
16+
17+ client.py
18+ docs.json
19+ spec.json
20+ all_objects.txt
21+ objects.txt
22+ compliance-openapi-3-2-0 /
23+ debug_compliance.py
24+ fix_all.py
25+ fix_coverage.py
26+ test_get_terms.py
27+ update.py
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ build_docs:
4545build :
4646 @echo " Building binary/package in $( BIN_DIR) "
4747 @mkdir -p $(BIN_DIR )
48- .venv/bin/python3 -m build --wheel --outdir $( BIN_DIR ) || python3 -m build --wheel --outdir $(BIN_DIR )
48+ uv build --wheel --out-dir $(BIN_DIR )
4949
5050build_wasm :
5151 @echo " Building WASM to dist/wasm"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cdd-python-all
44[ ![ License] ( https://img.shields.io/badge/license-Apache--2.0%20OR%20MIT-blue.svg )] ( https://opensource.org/licenses/Apache-2.0 )
55[ ![ CI/CD] ( https://github.com/offscale/cdd-python-all/workflows/CI/badge.svg )] ( https://github.com/offscale/cdd-python-all/actions )
66[ ![ Test Coverage] ( https://img.shields.io/badge/Test_Coverage-100.0%25-brightgreen )] ( https://github.com/offscale/cdd-python-all/actions )
7- [ ![ Doc Coverage] ( https://img.shields.io/badge/Doc_Coverage-0 .0%25-red )] ( https://github.com/offscale/cdd-python-all/actions )
7+ [ ![ Doc Coverage] ( https://img.shields.io/badge/Doc_Coverage-100 .0%25-brightgreen )] ( https://github.com/offscale/cdd-python-all/actions )
88
99OpenAPI ↔ Python. This is one compiler in a suite, all focussed on the same task: Compiler Driven Development (CDD).
1010
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ """CLI SDK CDD code parsing module."""
2+
3+ import libcst as cst
4+ from openapi_client .models import OpenAPI
5+
6+ def parse_cli_sdk_cdd (module : cst .Module , spec : OpenAPI ) -> None :
7+ """Parse CLI SDK CDD code."""
8+ pass
Original file line number Diff line number Diff line change 1+ """SQLAlchemy CDD code parsing module."""
2+
3+ import libcst as cst
4+ from openapi_client .models import OpenAPI
5+
6+ def parse_sqlalchemy_cdd (module : cst .Module , spec : OpenAPI ) -> None :
7+ """Parse SQLAlchemy CDD code."""
8+ pass
You can’t perform that action at this time.
0 commit comments