File: pyproject.toml

package info (click to toggle)
python-taskipy 1.14.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 436 kB
  • sloc: python: 1,262; makefile: 16; sh: 1
file content (16 lines) | stat: -rw-r--r-- 472 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tool.poetry]
name = "taskipy"
description = "tasks runner for python projects"

[tool.taskipy.tasks]
pre_hello = "echo 'pre_task'"
hello = "echo 'hello'"
post_hello = "echo 'post_task'"

pre_hello_failed_pretask = "echo 'pre_task' && exit 1"
hello_failed_pretask = "echo 'hello'"
post_hello_failed_pretask = "echo 'post_task'"

pre_hello_failed_posttask = "echo 'pre_task'"
hello_failed_posttask = "echo 'hello'"
post_hello_failed_posttask = "echo 'post_task' && exit 1"