File: install.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 (11 lines) | stat: -rw-r--r-- 193 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
from invoke import task

from .utils import ctx_run


@task(default=True)
def dev(ctx):
    """
    Install the current development version of syrupy
    """
    ctx_run(ctx, "poetry install")