Skip to content

Commit

Permalink
fix some tox issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizordec committed Sep 29, 2024
1 parent 15e13db commit b71b2de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/slipcover/slipcover.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import threading
import types
from collections import Counter, defaultdict
from typing import TYPE_CHECKING, Dict, Iterable, Iterator, List, NotRequired, Tuple, TypedDict
from typing import TYPE_CHECKING

if sys.version_info[0:2] < (3,12):
from . import bytecode as bc
Expand Down Expand Up @@ -42,6 +42,8 @@ def findlinestarts(co: types.CodeType):
findlinestarts = dis.findlinestarts

if TYPE_CHECKING:
from typing import Dict, Iterable, Iterator, List, NotRequired, Tuple, TypedDict

class CoverageMeta(TypedDict):
software: str
version: str
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ usedevelop = true
# when package switches to src layout, remove usedevelop and switch to wheel install
# wheel = true

deps = pytest
deps =
pytest
pytest-forked
commands =
pytest
pytest

0 comments on commit b71b2de

Please sign in to comment.