summaryrefslogtreecommitdiff
path: root/tests/test_call_modes.py
blob: 7f7cce08aa94834018e291b498fdbd50b709b921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from __future__ import annotations

import subprocess
import sys
from pathlib import Path

from tox.pytest import ToxProject


def test_call_as_module(empty_project: ToxProject) -> None:  # noqa: U100
    subprocess.check_output([sys.executable, "-m", "tox", "-h"])


def test_call_as_exe(empty_project: ToxProject) -> None:  # noqa: U100
    subprocess.check_output([str(Path(sys.executable).parent / "tox"), "-h"])