<feed xmlns='http://www.w3.org/2005/Atom'>
<title>genenetwork3/tests/unit/db, branch auth/implement-authorization-code-flow</title>
<subtitle>GeneNetwork3 REST API for data science and machine learning
</subtitle>
<id>http://git.genenetwork.org/genenetwork3/atom?h=auth%2Fimplement-authorization-code-flow</id>
<link rel='self' href='http://git.genenetwork.org/genenetwork3/atom?h=auth%2Fimplement-authorization-code-flow'/>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/'/>
<updated>2023-03-20T01:29:50+00:00</updated>
<entry>
<title>Fix get_all_species test</title>
<updated>2023-03-20T01:29:50+00:00</updated>
<author>
<name>zsloan</name>
</author>
<published>2023-03-20T01:25:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/commit/?id=b3cf6ff7943356f5c227d85d19ce413dbfe230aa'/>
<id>urn:sha1:b3cf6ff7943356f5c227d85d19ce413dbfe230aa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move sql for CRUD operations on case-attrs from gn2 to gn3</title>
<updated>2022-05-27T12:02:25+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2022-05-25T18:36:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/commit/?id=7bcd718a2954c2f1ff67bea84d79c7cd9a1d43a0'/>
<id>urn:sha1:7bcd718a2954c2f1ff67bea84d79c7cd9a1d43a0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move sql for modifying case-attributes from gn2 to gn3</title>
<updated>2022-05-27T12:02:25+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2022-05-25T18:36:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/commit/?id=9fa398d57e26c8ece01bce7a4f67545449e94821'/>
<id>urn:sha1:9fa398d57e26c8ece01bce7a4f67545449e94821</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Return all the results from CaseAttributes column as is</title>
<updated>2022-05-27T12:02:25+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2022-05-10T14:05:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/commit/?id=bc99eed7438e087650125ceab04797db7c726f31'/>
<id>urn:sha1:bc99eed7438e087650125ceab04797db7c726f31</id>
<content type='text'>
* gn3/db/sample_data.py: Remove "collections" import. Add "Optional" import.
(get_case_attributes): Return the results of "fetchall" from the case
attributes.
* tests/unit/db/test_sample_data.py (test_get_case_attributes): Update failing
test.
</content>
</entry>
<entry>
<title>Add Endpoint to get menu items for use in UI</title>
<updated>2022-05-26T13:42:27+00:00</updated>
<author>
<name>Frederick Muriuki Muriithi</name>
</author>
<published>2022-05-26T13:42:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/commit/?id=236d9236c794d7870258eab9e087f990c557462a'/>
<id>urn:sha1:236d9236c794d7870258eab9e087f990c557462a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Test that a carriage return is removed when generating csv</title>
<updated>2022-04-12T10:26:57+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2022-04-12T09:07:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/commit/?id=ca8a18f00b06a7c6ca4b022223f381ddaebbf930'/>
<id>urn:sha1:ca8a18f00b06a7c6ca4b022223f381ddaebbf930</id>
<content type='text'>
* tests/unit/db/test_sample_data.py: import "get_trait_csv_sample_data".
(test_get_trait_csv_sample_data): New test function.
</content>
</entry>
<entry>
<title>Use case attribute id inside brackets if present during insertions</title>
<updated>2022-04-07T08:54:28+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2022-04-06T13:36:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/commit/?id=b18de873dbead76276ee5077bc8a2afe78f61606'/>
<id>urn:sha1:b18de873dbead76276ee5077bc8a2afe78f61606</id>
<content type='text'>
* gn3/db/sample_data.py (delete_sample_data): If an id is present in the column header, use it.
* tests/unit/db/test_sample_data.py (test_delete_sample_data): Update tests to
capture the above.
</content>
</entry>
<entry>
<title>Use case attribute id inside brackets if present during insertions</title>
<updated>2022-04-07T08:54:28+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2022-04-06T13:25:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/commit/?id=dc71058e894c9857de68c7844bfc4b813c0532da'/>
<id>urn:sha1:dc71058e894c9857de68c7844bfc4b813c0532da</id>
<content type='text'>
* gn3/db/sample_data.py (insert_sample_data): If an id is present in the column header, use it.
* tests/unit/db/test_sample_data.py (test_insert_sample_data): Update tests to
capture the above.
</content>
</entry>
<entry>
<title>Use case attribute id inside brackets if present during updates</title>
<updated>2022-04-07T08:54:28+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2022-04-06T12:53:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/commit/?id=a7b7cdd1a5f1a9d071c5fd11c6f1fefa5302a838'/>
<id>urn:sha1:a7b7cdd1a5f1a9d071c5fd11c6f1fefa5302a838</id>
<content type='text'>
* gn3/db/sample_data.py: Import "parse_csv_column".
(update_sample_data): If an id is present in the column header, use it.
* tests/unit/db/test_sample_data.py (test_update_sample_data): Update tests to
capture the above.
</content>
</entry>
<entry>
<title>Add method for fetching the case_attributes</title>
<updated>2022-04-07T08:54:28+00:00</updated>
<author>
<name>BonfaceKilz</name>
</author>
<published>2022-04-05T12:12:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.genenetwork.org/genenetwork3/commit/?id=9e905e596f2b1b17ad78a86fff01aafe1cc8b108'/>
<id>urn:sha1:9e905e596f2b1b17ad78a86fff01aafe1cc8b108</id>
<content type='text'>
* gn3/db/sample_data.py (get_case_attributes): New function.
* tests/unit/db/test_sample_data.py (test_get_case_attributes): Test case for
the above.
</content>
</entry>
</feed>
