25 lines
773 B
JSON
Raw Normal View History

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "lint",
"type": "shell",
"command": "planemo lint",
"problemMatcher": []
2025-02-21 17:14:34 +00:00
},
{
"label": "serve",
"type": "shell",
"command": "planemo serve",
"problemMatcher": []
2025-02-21 22:14:07 +00:00
},
{
"label": "run tests",
"type": "shell",
"command": "planemo test autobigs-cli.xml --test_output_junit test_results/junit_results.xml --test_output_json test_results/results.json --test_output test_results/human.html",
"problemMatcher": []
}
]
}