* test: check the h2load version for test suite making use

of its --connect-to feature (available since 1.41.0).



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1895434 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Eissing
2021-11-30 17:10:13 +00:00
parent 1c5f651841
commit 0d3b3abf47
2 changed files with 20 additions and 1 deletions

View File

@ -1,8 +1,10 @@
import pytest
from .env import H2Conf
from .env import H2Conf, H2TestEnv
@pytest.mark.skipif(not H2TestEnv().h2load_is_at_least('1.41.0'),
reason="h2load misses --connect-to option")
class TestLoadGet:
@pytest.fixture(autouse=True, scope='class')