-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test overhead of large amounts of non-rootish tasks (#903)
- Loading branch information
1 parent
acbcd92
commit 1b31742
Showing
2 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
alembic/versions/9813b7160e69_parametrize_test_large_map.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
"""Parametrize test_large_map | ||
Revision ID: 9813b7160e69 | ||
Revises: f459b2c61eaf | ||
Create Date: 2023-07-05 11:04:08.510205 | ||
""" | ||
from alembic import op | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '9813b7160e69' | ||
down_revision = 'f459b2c61eaf' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade() -> None: | ||
op.execute( | ||
""" | ||
update test_run | ||
set name = 'test_large_map[rootish]' | ||
where name == 'test_large_map'; | ||
""" | ||
) | ||
|
||
def downgrade() -> None: | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
pass | ||
# ### end Alembic commands ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters