chore: move testing utils out of utils

This commit is contained in:
Tiara Rodney 2025-06-21 01:41:47 +02:00
parent 55ec6323bb
commit 9abfabde00
No known key found for this signature in database
GPG key ID: 5F43FAB4FBE5B5EB
7 changed files with 9 additions and 9 deletions

View file

@ -5,8 +5,8 @@ import pytest
pytestmark = pytest.mark.pytest
from byteb4rb1e.utils.testing.pytest import get_current_test
from byteb4rb1e.utils.testing.pytest.decorators import run_in_subprocess_once
from byteb4rb1e.testing.pytest import get_current_test
from byteb4rb1e.testing.pytest.decorators import run_in_subprocess_once
class Test_get_current_test:

View file

@ -4,7 +4,7 @@ import pytest
pytestmark = pytest.mark.pytest
from byteb4rb1e.utils.testing.pytest.decorators import run_in_subprocess_once
from byteb4rb1e.testing.pytest.decorators import run_in_subprocess_once
@run_in_subprocess_once()

View file

@ -5,8 +5,8 @@ import pytest
pytestmark = pytest.mark.pytest
from byteb4rb1e.utils.testing.pytest.decorators import run_in_subprocess_once
from byteb4rb1e.utils.testing.pytest.fixtures import current_test, mock_pkg
from byteb4rb1e.testing.pytest.decorators import run_in_subprocess_once
from byteb4rb1e.testing.pytest.fixtures import current_test, mock_pkg
def test_current_test(current_test):

View file

@ -4,8 +4,8 @@ import urllib.request
import pytest
from byteb4rb1e.utils.testing.pytest.decorators import run_in_subprocess_once
from byteb4rb1e.utils.testing.pytest.fixtures import mock_pkg
from byteb4rb1e.testing.pytest.decorators import run_in_subprocess_once
from byteb4rb1e.testing.pytest.fixtures import mock_pkg
from byteb4rb1e.utils.urllib.request import PkgHandler