From 82e52aaba6b7249483ff766f8089b55dd6fcb1fa Mon Sep 17 00:00:00 2001 From: Liz Gehret Date: Tue, 15 Oct 2024 13:08:23 -0600 Subject: [PATCH 1/2] bug: fix package name in recipe file --- ci/recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/recipe/meta.yaml b/ci/recipe/meta.yaml index ba45791..5fd8c4e 100644 --- a/ci/recipe/meta.yaml +++ b/ci/recipe/meta.yaml @@ -29,8 +29,8 @@ test: - coverage - pytest-cov imports: - - q2_amr - - qiime2.plugins.amr + - q2_amrfinderplus + - qiime2.plugins.amrfinderplus commands: - pytest --cov q2_amrfinderplus --cov-report xml:coverage.xml --pyargs q2_amrfinderplus From 82bde2f1df299af362f4a104829ec310fba2338b Mon Sep 17 00:00:00 2001 From: Liz Gehret Date: Wed, 16 Oct 2024 13:50:48 -0600 Subject: [PATCH 2/2] fix package data --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 3ca0003..00b1673 100644 --- a/setup.py +++ b/setup.py @@ -30,8 +30,14 @@ }, package_data={ "q2_amrfinderplus": ["citations.bib"], - "q2_amrfinderplus.types.tests": ["data/*" "data/*/*" "data/*/*/*"], - "q2_amrfinderplus.tests": ["data/*" "data/*/*" "data/*/*/*"], + "q2_amrfinderplus.types.tests": + ["data/*", + "data/*/*", + "data/*/*/*"], + "q2_amrfinderplus.tests": + ["data/*", + "data/*/*", + "data/*/*/*"], }, zip_safe=False, )