Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Merge requests
!306
Await QA
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Await QA
QA_fixes
into
main
Overview
1
Commits
13
Pipelines
2
Changes
12
Merged
Charlotte Hausman
requested to merge
QA_fixes
into
main
3 years ago
Overview
1
Commits
13
Pipelines
2
Changes
12
Expand
potential issue with analyst mailing list - waiting on outstanding helpdesk ticket
0
0
Merge request reports
Compare
main
version 1
801c5eb7
3 years ago
main (base)
and
latest version
latest version
0b7baeac
13 commits,
3 years ago
version 1
801c5eb7
6 commits,
3 years ago
12 files
+
174
−
26
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
schema/versions/46dbb53ae77f_add_await_qa_step_to_calibration.py
0 → 100644
+
39
−
0
Options
"""
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
'
"""
)
Loading