summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBernát Gábor <gaborjbernat@gmail.com>2022-11-22 18:22:12 -0800
committerBernát Gábor <gaborjbernat@gmail.com>2022-11-22 18:27:47 -0800
commit9da1baf852ec6897194b1313c7bdc4031d7b1c34 (patch)
treed00f1cf715a00202b05bec1f5bce51e8d150fc43 /tests
parente9a8b2f2d4c5a1bd3e73f28bffb435bc278bb48b (diff)
downloadtox-git-9da1baf852ec6897194b1313c7bdc4031d7b1c34.tar.gz
Bump deps and tools
Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/config/source/test_source_ini.py2
-rw-r--r--tests/type_check/add_config_container_factory.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/tests/config/source/test_source_ini.py b/tests/config/source/test_source_ini.py
index dcf727d7..c3162486 100644
--- a/tests/config/source/test_source_ini.py
+++ b/tests/config/source/test_source_ini.py
@@ -1,3 +1,5 @@
+from __future__ import annotations
+
from pathlib import Path
from tox.config.loader.section import Section
diff --git a/tests/type_check/add_config_container_factory.py b/tests/type_check/add_config_container_factory.py
index d01ac56f..06c6d3b5 100644
--- a/tests/type_check/add_config_container_factory.py
+++ b/tests/type_check/add_config_container_factory.py
@@ -9,7 +9,7 @@ from tox.config.sets import ConfigSet
class EnvDockerConfigSet(ConfigSet):
def register_config(self) -> None:
def factory(container_name: object) -> str: # noqa: U100
- ...
+ raise NotImplementedError
self.add_config(
keys=["k"],