diff options
author | Frederick Muriuki Muriithi | 2023-04-04 12:13:11 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-04-04 12:13:11 +0300 |
commit | 02e5c81e5d1281b66aa14ce47563997e845cea95 (patch) | |
tree | 4cb640d62c020979b90f0a3caf12ece73d94df25 /tests | |
parent | 98e9726405df3cce81356534335259a446b0c458 (diff) | |
download | genenetwork3-02e5c81e5d1281b66aa14ce47563997e845cea95.tar.gz |
Add tables to link genotype data
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/auth/test_migrations_create_tables.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/unit/auth/test_migrations_create_tables.py b/tests/unit/auth/test_migrations_create_tables.py index 65f3896..1664b5c 100644 --- a/tests/unit/auth/test_migrations_create_tables.py +++ b/tests/unit/auth/test_migrations_create_tables.py @@ -29,7 +29,15 @@ migrations_and_tables = ( ("20221219_03_PcTrb-create-authorisation-code-table.py", "authorisation_code"), ("20230207_01_r0bkZ-create-group-join-requests-table.py", - "group_join_requests")) + "group_join_requests"), + ("20230322_01_0dDZR-create-linked-phenotype-data-table.py", + "linked_phenotype_data"), + ("20230322_02_Ll854-create-phenotype-resources-table.py", + "phenotype_resources"), + ("20230404_01_VKxXg-create-linked-genotype-data-table.py", + "linked_genotype_data"), + ("20230404_02_la33P-create-genotype-resources-table.py", + "genotype_resources")) @pytest.mark.unit_test @pytest.mark.parametrize("migration_file,the_table", migrations_and_tables) |