Skip to content
Snippets Groups Projects
Commit 801c5eb7 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

WS-267: Await QA

parent 5b479907
No related branches found
No related tags found
1 merge request!306Await QA
Pipeline #1998 passed
This commit is part of merge request !306. Comments created here will be created in the context of that merge request.
"""add await qa step to calibration
Revision ID: 46dbb53ae77f
Revises: 6909d5608422
Create Date: 2021-06-24 16:06:30.176007
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '46dbb53ae77f'
down_revision = '6909d5608422'
branch_labels = None
depends_on = None
def upgrade():
op.execute(
"""
UPDATE capabilities
SET capability_steps='prepare-and-run-workflow std_calibration
await-workflow
await-qa'
WHERE capability_name='std_calibration'
"""
)
def downgrade():
op.execute(
"""
UPDATE capabilities
SET capability_steps='prepare-and-run-workflow std_calibration
await-workflow'
WHERE capability_name='std_calibration'
"""
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment