summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorKyle Benesch <4b796c65+github@gmail.com>2022-10-26 12:23:10 -0700
committerGitHub <noreply@github.com>2022-10-26 22:23:10 +0300
commitedcb32592a057012f7116f8ebdba530c44ced7d8 (patch)
tree6f3cc9be4d7f2441d9766ecec29b8840941b9074 /tests/conftest.py
parent9f2bfc62c76a5e646b533b8cc3ae7e4a67f68445 (diff)
downloadwheel-git-edcb32592a057012f7116f8ebdba530c44ced7d8.tar.gz
Added tests to type checking and finish annotations. (#477)
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index af1d1fd..546706a 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -16,17 +16,17 @@ from pytest import TempPathFactory
@pytest.fixture(scope="session")
def wheels_and_eggs(tmp_path_factory: TempPathFactory) -> list[Path]:
"""Build wheels and eggs from test distributions."""
- test_distributions = (
+ test_distributions = [
"complex-dist",
"simple.dist",
"headers.dist",
"commasinfilenames.dist",
"unicode.dist",
- )
+ ]
if sys.platform != "win32":
# ABI3 extensions don't really work on Windows
- test_distributions += ("abi3extension.dist",)
+ test_distributions.append("abi3extension.dist")
this_dir = Path(__file__).parent
build_dir = tmp_path_factory.mktemp("build")