mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-02 15:45:25 +00:00
Rename have_* marks to with_*
Marks starting with "with" or "without" make more sense linguistically
than those starting with "have" or "have_not".
(cherry picked from commit df7e9f4ac3
)
This commit is contained in:
@@ -59,11 +59,11 @@ without_fips = pytest.mark.skipif(
|
||||
feature_test("--have-fips-mode"), reason="FIPS support enabled in the build"
|
||||
)
|
||||
|
||||
have_libxml2 = pytest.mark.skipif(
|
||||
with_libxml2 = pytest.mark.skipif(
|
||||
not feature_test("--have-libxml2"), reason="libxml2 support disabled in the build"
|
||||
)
|
||||
|
||||
have_json_c = pytest.mark.skipif(
|
||||
with_json_c = pytest.mark.skipif(
|
||||
not feature_test("--have-json-c"), reason="json-c support disabled in the build"
|
||||
)
|
||||
|
||||
|
@@ -23,7 +23,7 @@ import generic
|
||||
requests = pytest.importorskip("requests")
|
||||
|
||||
pytestmark = [
|
||||
isctest.mark.have_json_c,
|
||||
isctest.mark.with_json_c,
|
||||
pytest.mark.extra_artifacts(
|
||||
[
|
||||
"ns2/*.jnl",
|
||||
|
@@ -24,7 +24,7 @@ import generic
|
||||
requests = pytest.importorskip("requests")
|
||||
|
||||
pytestmark = [
|
||||
isctest.mark.have_libxml2,
|
||||
isctest.mark.with_libxml2,
|
||||
pytest.mark.extra_artifacts(
|
||||
[
|
||||
"ns2/K*",
|
||||
|
Reference in New Issue
Block a user