/
githubmirror
/
fwupd
Обзор
Документация
Войти
/
githubmirror
/
fwupd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/vscode/tasks.json
34 строки
749 B
Mario Limonciello
trivial: venv: Add test suite wrapper
10 янв 2024, 23:06
10 янв 2024, 23:06
a4369fe
Код
Авторство
О чём код?
{ "version": "2.0.0", "tasks": [ { "label": "build-fwupd", "type": "shell", "command": "/bin/bash -c 'source venv/bin/activate; build-fwupd'", "problemMatcher": [], "group": { "kind": "build", "isDefault": true } }, { "label": "test-fwupd", "type": "shell", "command": "/bin/bash -c 'source venv/bin/activate; test-fwupd'", "problemMatcher": [], "group": { "kind": "test", "isDefault": true } }, { "label": "gdbserver-fwupd", "type": "shell", "command": "/bin/bash -c 'source venv/bin/activate; DEBUG=1 fwupd -v'", "problemMatcher": [], "group": { "kind": "none" } } ] }