aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-04-10 12:56:14 +0300
committerFrederick Muriuki Muriithi2023-04-10 12:56:14 +0300
commit6006526069803a8a906b4fd19f372ca721f7b29c (patch)
tree6ee0d678f09e27e44ccea9ad3b4304bd11efdb89 /tests
parentf2cea88b5790b650b702ee305c1cb54545243307 (diff)
downloadgenenetwork3-6006526069803a8a906b4fd19f372ca721f7b29c.tar.gz
Migrations for linking genotype files.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/auth/test_migrations_create_tables.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/auth/test_migrations_create_tables.py b/tests/unit/auth/test_migrations_create_tables.py
index 1664b5c..2b8140b 100644
--- a/tests/unit/auth/test_migrations_create_tables.py
+++ b/tests/unit/auth/test_migrations_create_tables.py
@@ -37,7 +37,9 @@ migrations_and_tables = (
("20230404_01_VKxXg-create-linked-genotype-data-table.py",
"linked_genotype_data"),
("20230404_02_la33P-create-genotype-resources-table.py",
- "genotype_resources"))
+ "genotype_resources"),
+ ("20230410_01_8mwaf-create-linked-mrna-data-table.py", "linked_mrna_data"),
+ ("20230410_02_WZqSf-create-mrna-resources-table.py", "mrna_resources"))
@pytest.mark.unit_test
@pytest.mark.parametrize("migration_file,the_table", migrations_and_tables)