152 lines
4.5 KiB
Diff
152 lines
4.5 KiB
Diff
From 22af1c13f637587c0182b3363e98d15f7e150eb7 Mon Sep 17 00:00:00 2001
|
|
From: Lumir Balhar <lbalhar@redhat.com>
|
|
Date: Thu, 30 Jun 2022 14:05:02 +0200
|
|
Subject: [PATCH 1/4] Fix test compatibility with setuptools_scm 7
|
|
|
|
---
|
|
hatch.toml | 1 +
|
|
tests/test_build.py | 8 +++++++-
|
|
2 files changed, 8 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/hatch.toml b/hatch.toml
|
|
index 269801a..22c9f86 100644
|
|
--- a/hatch.toml
|
|
+++ b/hatch.toml
|
|
@@ -1,5 +1,6 @@
|
|
[envs.default]
|
|
dependencies = [
|
|
+ "importlib-metadata",
|
|
"pytest",
|
|
"pytest-cov",
|
|
]
|
|
diff --git a/tests/test_build.py b/tests/test_build.py
|
|
index 2d719a9..a4f88fd 100644
|
|
--- a/tests/test_build.py
|
|
+++ b/tests/test_build.py
|
|
@@ -6,9 +6,12 @@
|
|
import zipfile
|
|
|
|
import pytest
|
|
+from importlib_metadata import version
|
|
|
|
from .utils import build_project, read_file
|
|
|
|
+setuptools_scm_major = int(version("setuptools_scm").split(".")[0])
|
|
+
|
|
|
|
def test_basic(new_project_basic):
|
|
build_project('-t', 'wheel')
|
|
@@ -75,7 +78,10 @@ def test_write(new_project_write):
|
|
assert os.path.isfile(version_file)
|
|
|
|
lines = read_file(version_file).splitlines()
|
|
- assert lines[3] == "version = '1.2.3'"
|
|
+ if setuptools_scm_major < 7:
|
|
+ assert lines[3] == "version = '1.2.3'"
|
|
+ else:
|
|
+ assert lines[3] == "__version__ = version = '1.2.3'"
|
|
|
|
|
|
@pytest.mark.skipif(sys.version_info[0] == 2, reason='Depends on fix in 6.4.0 which is Python 3-only')
|
|
|
|
From 234285322bc655885da1cebed510bba6c7960232 Mon Sep 17 00:00:00 2001
|
|
From: Lumir Balhar <lbalhar@redhat.com>
|
|
Date: Thu, 30 Jun 2022 22:35:53 +0200
|
|
Subject: [PATCH 2/4] Revert "Fix test compatibility with setuptools_scm 7"
|
|
|
|
This reverts commit 22af1c13f637587c0182b3363e98d15f7e150eb7.
|
|
---
|
|
hatch.toml | 1 -
|
|
tests/test_build.py | 8 +-------
|
|
2 files changed, 1 insertion(+), 8 deletions(-)
|
|
|
|
diff --git a/hatch.toml b/hatch.toml
|
|
index 22c9f86..269801a 100644
|
|
--- a/hatch.toml
|
|
+++ b/hatch.toml
|
|
@@ -1,6 +1,5 @@
|
|
[envs.default]
|
|
dependencies = [
|
|
- "importlib-metadata",
|
|
"pytest",
|
|
"pytest-cov",
|
|
]
|
|
diff --git a/tests/test_build.py b/tests/test_build.py
|
|
index a4f88fd..2d719a9 100644
|
|
--- a/tests/test_build.py
|
|
+++ b/tests/test_build.py
|
|
@@ -6,12 +6,9 @@
|
|
import zipfile
|
|
|
|
import pytest
|
|
-from importlib_metadata import version
|
|
|
|
from .utils import build_project, read_file
|
|
|
|
-setuptools_scm_major = int(version("setuptools_scm").split(".")[0])
|
|
-
|
|
|
|
def test_basic(new_project_basic):
|
|
build_project('-t', 'wheel')
|
|
@@ -78,10 +75,7 @@ def test_write(new_project_write):
|
|
assert os.path.isfile(version_file)
|
|
|
|
lines = read_file(version_file).splitlines()
|
|
- if setuptools_scm_major < 7:
|
|
- assert lines[3] == "version = '1.2.3'"
|
|
- else:
|
|
- assert lines[3] == "__version__ = version = '1.2.3'"
|
|
+ assert lines[3] == "version = '1.2.3'"
|
|
|
|
|
|
@pytest.mark.skipif(sys.version_info[0] == 2, reason='Depends on fix in 6.4.0 which is Python 3-only')
|
|
|
|
From 46b2c3e21ad229887ad4bf20c24b5ff5ad3e3c0e Mon Sep 17 00:00:00 2001
|
|
From: Lumir Balhar <lbalhar@redhat.com>
|
|
Date: Thu, 30 Jun 2022 22:39:39 +0200
|
|
Subject: [PATCH 3/4] Fix test compatibility with setuptools_scm 7
|
|
|
|
---
|
|
tests/test_build.py | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/test_build.py b/tests/test_build.py
|
|
index 2d719a9..ca82d9d 100644
|
|
--- a/tests/test_build.py
|
|
+++ b/tests/test_build.py
|
|
@@ -75,7 +75,8 @@ def test_write(new_project_write):
|
|
assert os.path.isfile(version_file)
|
|
|
|
lines = read_file(version_file).splitlines()
|
|
- assert lines[3] == "version = '1.2.3'"
|
|
+ assert lines[3].startswith("version =") or lines[3].startswith("__version__ =")
|
|
+ assert lines[3].endswith("version = '1.2.3'")
|
|
|
|
|
|
@pytest.mark.skipif(sys.version_info[0] == 2, reason='Depends on fix in 6.4.0 which is Python 3-only')
|
|
|
|
From d25f23e0c598c7f4a1c699b9b9aa83a24cdbd505 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Lum=C3=ADr=20=27Frenzy=27=20Balhar?=
|
|
<frenzy.madness@gmail.com>
|
|
Date: Thu, 30 Jun 2022 22:43:44 +0200
|
|
Subject: [PATCH 4/4] Update tests/test_build.py
|
|
|
|
Co-authored-by: Ronny Pfannschmidt <opensource@ronnypfannschmidt.de>
|
|
---
|
|
tests/test_build.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/test_build.py b/tests/test_build.py
|
|
index ca82d9d..303c76d 100644
|
|
--- a/tests/test_build.py
|
|
+++ b/tests/test_build.py
|
|
@@ -75,7 +75,7 @@ def test_write(new_project_write):
|
|
assert os.path.isfile(version_file)
|
|
|
|
lines = read_file(version_file).splitlines()
|
|
- assert lines[3].startswith("version =") or lines[3].startswith("__version__ =")
|
|
+ assert lines[3].startswith(("version =", "__version__ ="))
|
|
assert lines[3].endswith("version = '1.2.3'")
|
|
|
|
|