2023-05-10 22:05:27 +02:00
|
|
|
---
|
|
|
|
pyproject.toml | 3 +++
|
|
|
|
tests/tox_env/python/virtual_env/package/test_package_cmd_builder.py | 1 +
|
|
|
|
2 files changed, 4 insertions(+)
|
|
|
|
|
2023-09-08 19:15:07 +02:00
|
|
|
Index: tox-4.11.1/pyproject.toml
|
|
|
|
===================================================================
|
|
|
|
--- tox-4.11.1.orig/pyproject.toml
|
|
|
|
+++ tox-4.11.1/pyproject.toml
|
|
|
|
@@ -133,6 +133,9 @@ ignore = [
|
2023-05-10 22:05:27 +02:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
testpaths = ["tests"]
|
|
|
|
addopts = "--tb=auto -ra --showlocals --no-success-flaky-report"
|
|
|
|
+markers = [
|
|
|
|
+ "network: tests requiring network connection",
|
|
|
|
+]
|
|
|
|
|
2023-09-08 19:15:07 +02:00
|
|
|
[tool.coverage]
|
|
|
|
html.show_contexts = true
|
|
|
|
Index: tox-4.11.1/tests/tox_env/python/virtual_env/package/test_package_cmd_builder.py
|
|
|
|
===================================================================
|
|
|
|
--- tox-4.11.1.orig/tests/tox_env/python/virtual_env/package/test_package_cmd_builder.py
|
|
|
|
+++ tox-4.11.1/tests/tox_env/python/virtual_env/package/test_package_cmd_builder.py
|
|
|
|
@@ -78,6 +78,7 @@ def test_install_pkg_via(tox_project: To
|
2023-05-10 22:05:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.usefixtures("enable_pip_pypi_access")
|
|
|
|
+@pytest.mark.network
|
|
|
|
def test_build_wheel_external(tox_project: ToxProjectCreator, demo_pkg_inline: Path) -> None:
|
|
|
|
ini = """
|
|
|
|
[testenv]
|