termesh-tasks 0.1.2

Internal component of a terminal-native, agent-first IDE.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::Path;

use termesh_core::TaskSpec;

pub(crate) fn python_tasks(root: &Path) -> Vec<TaskSpec> {
    vec![TaskSpec {
        id: "python.pytest".into(),
        label: "pytest: test".into(),
        program: "pytest".into(),
        args: Vec::new(),
        cwd: root.into(),
    }]
}