We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 207868b commit fad921cCopy full SHA for fad921c
nextstrain/cli/pathogens.py
@@ -516,7 +516,7 @@ def test_compatibility() -> SetupTestResult:
516
if not (compatible_workflows := self.compatible_workflows("nextstrain run")):
517
return msg + "\n(no workflows registered as compatible)", False
518
519
- return msg + f"\nCompatible workflows: {list(compatible_workflows.keys())}", True
+ return msg, True
520
521
return [
522
('downloaded',
@@ -526,6 +526,9 @@ def test_compatibility() -> SetupTestResult:
526
self.registration_path.is_file()),
527
528
test_compatibility(),
529
+
530
+ *((f'`nextstrain run` workflow {name!r} exists', self.workflow_path(name).is_dir())
531
+ for name in self.compatible_workflows("nextstrain run")),
532
]
533
534
0 commit comments