mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-22 06:37:42 -04:00
Rename have_* marks to with_*
Marks starting with "with" or "without" make more sense linguistically than those starting with "have" or "have_not".
This commit is contained in:
parent
23fb615963
commit
df7e9f4ac3
3 changed files with 4 additions and 4 deletions
|
|
@ -45,11 +45,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*",
|
||||
|
|
|
|||
Loading…
Reference in a new issue