File: test_virtualenv.py

package info (click to toggle)
python-filelock 3.19.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 196 kB
  • sloc: python: 1,490; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (2)
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"])