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

import logging

from setuptools_scm import _log


def test_log_levels_when_set() -> None:
    assert _log._default_log_level({"SETUPTOOLS_SCM_DEBUG": ""}) == logging.DEBUG
    assert _log._default_log_level({"SETUPTOOLS_SCM_DEBUG": "INFO"}) == logging.DEBUG
    assert _log._default_log_level({"SETUPTOOLS_SCM_DEBUG": "3"}) == logging.DEBUG


def test_log_levels_when_unset() -> None:
    assert _log._default_log_level({}) == logging.WARNING