Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,6 @@ jobs:
- name: Run mypy type checker
run: uv run mypy src/

- name: Check AdCP schemas are up to date
run: |
uv run python scripts/generate_schemas.py
if ! git diff --exit-code src/creative_agent/schemas_generated/; then
echo "❌ Generated schemas are out of sync!"
echo "Run: python scripts/generate_schemas.py"
exit 1
fi

- name: Run smoke tests
run: uv run pytest tests/smoke/ -v --no-cov -m smoke

Expand Down
6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dependencies = [
"boto3>=1.35.0",
"markdown>=3.6",
"bleach>=6.3.0",
"adcp>=1.2.1", # Official ADCP Python client for schema types
]

[project.scripts]
Expand All @@ -39,9 +40,6 @@ dev = [
"pytest-cov>=6.2.1",
"pytest-mock>=3.14.1",
"ruff>=0.8.0",
# Schema generation
"datamodel-code-generator>=0.26.0",
"jsonref>=1.1.0",
# Type stubs
"boto3-stubs[s3]>=1.35.0",
"types-pillow>=10.0.0",
Expand All @@ -59,7 +57,6 @@ exclude = [
".venv",
"build",
"dist",
"src/creative_agent/schemas_generated",
]

[tool.ruff.lint]
Expand Down Expand Up @@ -137,7 +134,6 @@ omit = [
"tests/*",
"*/__pycache__/*",
"*/.venv/*",
"src/creative_agent/schemas_generated/*",
]

[tool.coverage.report]
Expand Down
317 changes: 0 additions & 317 deletions scripts/generate_schemas.py

This file was deleted.

Loading