opencompletion.com/migrations/versions/d737de68d6fa_add_metadata_field_to_activitystate.py
Russell Ballestrini 1b44c2d66b Integrate comprehensive testing framework with Makefile
- Added unit tests for YAML loading and parsing functionality
- Created integration tests for multiple activity files validation
- Implemented functional tests for complete activity workflows
- Added battleship pre_script functionality tests
- Integrated all test types into comprehensive Makefile
- Fixed CLI validator test with proper failing fixture
- Applied black formatting to all Python files
- Removed problematic hardcoded targets from Makefile
- Added proper venv dependency management

Test coverage includes:
- Unit: YAML loading, validator functionality
- Integration: Cross-file validation, metadata operations
- Functional: End-to-end activity flows, pre_script execution
- All 30 activity files validated and tested
2025-08-10 19:38:50 -04:00

35 lines
871 B
Python

"""Add metadata field to ActivityState
Revision ID: d737de68d6fa
Revises: d04950c5a624
Create Date: 2024-07-28 17:02:11.872502
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = "d737de68d6fa"
down_revision = "d04950c5a624"
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table("activity_state", schema=None) as batch_op:
batch_op.add_column(
sa.Column("json_metadata", sa.UnicodeText(), server_default="{}")
)
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table("activity_state", schema=None) as batch_op:
batch_op.drop_column("json_metadata")
# ### end Alembic commands ###