File: test_virtualenv.py

package info (click to toggle)
python-filelock 3.18.0-1%2Bdeb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie-proposed-updates
  • size: 216 kB
  • sloc: python: 1,421; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
from __future__ import annotations

from typing import TYPE_CHECKING

from virtualenv import cli_run  # type: ignore[import-untyped]

if TYPE_CHECKING:
    from pathlib import Path


def test_virtualenv(tmp_path: Path) -> None:
    cli_run([str(tmp_path), "--no-pip", "--no-setuptools", "--no-periodic-update"])