2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

Merge branch 'tkrizek/nsupdate-test-flaky-on-freebsd' into 'main'

Allow nsupdate test rerun on FreeBSD

See merge request isc-projects/bind9!8638
This commit is contained in:
Tom Krizek
2024-01-10 13:43:08 +00:00

View File

@@ -9,6 +9,14 @@
# See the COPYRIGHT file distributed with this work for additional
# information regarding copyright ownership.
import platform
import pytest_custom_markers
MAX_RUNS = 2 if platform.system() == "FreeBSD" else 1 # GL#3846
@pytest_custom_markers.flaky(max_runs=MAX_RUNS)
def test_nsupdate(run_tests_sh):
run_tests_sh()