Skip to content

Commit 90e4954

Browse files
committed
fixup! Test pyproject.toml integration using git
1 parent 24c24ab commit 90e4954

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

testing/test_integration.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ def test_pyproject_support(tmpdir, monkeypatch):
3232
def test_pyproject_support_with_git(tmpdir, monkeypatch, wd):
3333
monkeypatch.delenv("SETUPTOOLS_SCM_DEBUG")
3434
pkg = tmpdir.join("wd")
35-
pkg.join("pyproject.toml").write(
36-
"""[tool.setuptools_scm]"""
37-
)
35+
pkg.join("pyproject.toml").write("""[tool.setuptools_scm]""")
3836
pkg.join("setup.py").write("__import__('setuptools').setup()")
3937
res = do((sys.executable, "setup.py", "--version"), pkg)
4038
assert res == "0.1.dev0"

0 commit comments

Comments
 (0)