We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8676bc commit b34a87cCopy full SHA for b34a87c
.github/workflows/ci.yml
@@ -108,7 +108,6 @@ jobs:
108
# matrix:
109
# python-version:
110
# - "3.12"
111
- # - "3.13"
112
# os: [ubuntu-latest]
113
# steps:
114
# - uses: actions/checkout@v5
tests/integration/test_packages.py
@@ -2,7 +2,6 @@
2
import tempfile
3
from dataclasses import dataclass
4
from pathlib import Path
5
-from typing import Generator
6
7
import pytest
8
from debmagic.common.utils import run_cmd
@@ -73,7 +72,7 @@ class Environment:
73
72
74
75
@pytest.fixture(scope="session")
76
-def test_env() -> Generator[Environment]:
+def test_env():
77
with tempfile.TemporaryDirectory() as test_tmp_dir:
78
test_dir = Path(test_tmp_dir)
79
image_name = _prepare_docker_image(test_dir, "debian", "trixie")
0 commit comments