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:
Michal Nowak 2024-10-11 11:30:26 +02:00
parent 23fb615963
commit df7e9f4ac3
3 changed files with 4 additions and 4 deletions

View file

@ -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"
)

View file

@ -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",

View file

@ -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*",