We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6dd69c commit aa7c047Copy full SHA for aa7c047
tests/test_integration.py
@@ -16,7 +16,10 @@
16
from twine import __main__ as dunder_main
17
from twine import cli
18
19
-pytestmark = [pytest.mark.enable_socket, pytest.mark.flaky(reruns=3, reruns_delay=1)]
+pytestmark = [
20
+ pytest.mark.enable_socket,
21
+ pytest.mark.flaky(reruns=3, reruns_delay=1),
22
+]
23
24
25
@pytest.fixture(scope="session")
@@ -27,7 +30,7 @@ def sampleproject_dist(tmp_path_factory):
27
30
)
28
31
with (checkout / "setup.py").open("r+") as setup:
29
32
orig = setup.read()
- sub = orig.replace("name='sampleproject'", "name='twine-sampleproject'")
33
+ sub = orig.replace('name="sampleproject"', 'name="twine-sampleproject"')
34
assert orig != sub
35
setup.seek(0)
36
setup.write(sub)
0 commit comments