Skip to content

Commit b34a87c

Browse files
committed
test(integration): fix typing issue on python 3.12
1 parent d8676bc commit b34a87c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ jobs:
108108
# matrix:
109109
# python-version:
110110
# - "3.12"
111-
# - "3.13"
112111
# os: [ubuntu-latest]
113112
# steps:
114113
# - uses: actions/checkout@v5

tests/integration/test_packages.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import tempfile
33
from dataclasses import dataclass
44
from pathlib import Path
5-
from typing import Generator
65

76
import pytest
87
from debmagic.common.utils import run_cmd
@@ -73,7 +72,7 @@ class Environment:
7372

7473

7574
@pytest.fixture(scope="session")
76-
def test_env() -> Generator[Environment]:
75+
def test_env():
7776
with tempfile.TemporaryDirectory() as test_tmp_dir:
7877
test_dir = Path(test_tmp_dir)
7978
image_name = _prepare_docker_image(test_dir, "debian", "trixie")

0 commit comments

Comments
 (0)