1 # Copyright (C) Internet Systems Consortium, Inc. ("ISC") 2 # 3 # SPDX-License-Identifier: MPL-2.0 4 # 5 # This Source Code Form is subject to the terms of the Mozilla Public 6 # License, v. 2.0. If a copy of the MPL was not distributed with this 7 # file, you can obtain one at https://mozilla.org/MPL/2.0/. 8 # 9 # See the COPYRIGHT file distributed with this work for additional 10 # information regarding copyright ownership. 11 12 import pytest 13 14 pytestmark = pytest.mark.extra_artifacts( 15 [ 16 ".digrc", 17 "dig*.out*", 18 "dig.*.foo.*", 19 "dig.*.bar.*", 20 "dig.*.prime.*", 21 "nextpart.out.*", 22 "ans*/ans.run", 23 "ans*/query.log", 24 "ns1/named.stats*", 25 "ns4/tld.db", 26 "ns5/trusted.conf", 27 "ns6/K*", 28 "ns6/ds.example.net.db", 29 "ns6/ds.example.net.db.signed", 30 "ns6/dsset-ds.example.net.", 31 "ns6/dsset-example.net.", 32 "ns6/example.net.db", 33 "ns6/example.net.db.signed", 34 "ns6/example.net.db.signed.jnl", 35 "ns6/to-be-removed.tld.db", 36 "ns6/to-be-removed.tld.db.jnl", 37 "ns7/server.db", 38 "ns7/server.db.jnl", 39 ] 40 ) 41 42 43 def test_resolver(run_tests_sh): 44 run_tests_sh() 45