Skip to content

Commit

Permalink
bug: fix package name in recipe file
Browse files Browse the repository at this point in the history
  • Loading branch information
lizgehret authored Oct 17, 2024
2 parents eb8f7a6 + 82bde2f commit 92e9219
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ci/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 92e9219

Please sign in to comment.