File: __init__.py

package info (click to toggle)
python-syrupy 4.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,368 kB
  • sloc: python: 5,978; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 330 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from invoke import Collection

from . import (
    benchmark,
    build,
    lint,
    test,
)

ns = Collection()
# Top level tasks
ns.add_task(benchmark.benchmark)
ns.add_task(build.dist, name="build")
ns.add_task(build.install)
ns.add_task(build.release)
ns.add_task(test.test)
# Module collection tasks
ns.add_collection(lint)