diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-02 10:49:35 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-17 23:03:08 -0800 |
commit | 4e332e9037530ebc62836acfa78896dc76700c9c (patch) | |
tree | f4a7505dc233681f18220581b52b3b97064f3a00 /python/tests | |
parent | c29183a78cb13d507b44bc57d392beae89250339 (diff) | |
download | fatcat-4e332e9037530ebc62836acfa78896dc76700c9c.tar.gz fatcat-4e332e9037530ebc62836acfa78896dc76700c9c.zip |
add 'lxml' mode for large XML file import, and multi-tags
Diffstat (limited to 'python/tests')
-rw-r--r-- | python/tests/import_pubmed.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests/import_pubmed.py b/python/tests/import_pubmed.py index 201f533c..10ded3fc 100644 --- a/python/tests/import_pubmed.py +++ b/python/tests/import_pubmed.py @@ -20,7 +20,7 @@ def test_pubmed_importer(pubmed_importer): last_index = pubmed_importer.api.get_changelog(limit=1)[0].index with open('tests/files/pubmedsample_2019.xml', 'r') as f: pubmed_importer.bezerk_mode = True - counts = Bs4XmlLargeFilePusher(pubmed_importer, f, "PubmedArticle").run() + counts = Bs4XmlLargeFilePusher(pubmed_importer, f, ["PubmedArticle"]).run() assert counts['insert'] == 176 assert counts['exists'] == 0 assert counts['skip'] == 0 @@ -37,7 +37,7 @@ def test_pubmed_importer(pubmed_importer): with open('tests/files/pubmedsample_2019.xml', 'r') as f: pubmed_importer.bezerk_mode = False pubmed_importer.reset() - counts = Bs4XmlLargeFilePusher(pubmed_importer, f, "PubmedArticle").run() + counts = Bs4XmlLargeFilePusher(pubmed_importer, f, ["PubmedArticle"]).run() assert counts['insert'] == 0 assert counts['exists'] == 176 assert counts['skip'] == 0 |