Skip to content

Commit b6f00e4

Browse files
committed
Fix CI
1 parent dae5e19 commit b6f00e4

File tree

8 files changed

+31
-38
lines changed

8 files changed

+31
-38
lines changed

.gitignore

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,17 @@ __pycache__
1111
coverage.json
1212
3.2.0.md
1313
.coverage
14-
test_client.py
14+
/test_client.py
1515
openapi.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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ build_docs:
4545
build:
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

5050
build_wasm:
5151
@echo "Building WASM to dist/wasm"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

99
OpenAPI ↔ Python. This is one compiler in a suite, all focussed on the same task: Compiler Driven Development (CDD).
1010

client.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

spec.json

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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

0 commit comments

Comments
 (0)