This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mandatory argument 'module_name' to tests
- Loading branch information
1 parent
311a013
commit a41d484
Showing
1 changed file
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,7 @@ def test_run_plugin_tests_with_napari_prefix(copie, capsys): | |
result = copie.copy(extra_answers={ | ||
"plugin_name": name, | ||
"display_name": "napari Foo", | ||
"module_name": "napari_foo", | ||
"short_description": "Super fast foo for all the bars", | ||
"full_name": "napari bot", | ||
"email": "[email protected]", | ||
|
@@ -92,6 +93,7 @@ def test_run_select_plugins(copie, capsys): | |
extra_answers={ | ||
"plugin_name": name, | ||
"display_name": "Foo Bar", | ||
"module_name": "anything", | ||
"short_description": "Super fast foo for all the bars", | ||
"full_name": "napari bot", | ||
"email": "[email protected]", | ||
|
@@ -129,6 +131,7 @@ def test_pre_commit_validity(copie, include_reader_plugin, include_writer_plugin | |
extra_answers={ | ||
"plugin_name": "anything", | ||
"display_name": "Foo Bar", | ||
"module_name": "anything", | ||
"short_description": "Super fast foo for all the bars", | ||
"full_name": "napari bot", | ||
"email": "[email protected]", | ||
|