Home | History | Annotate | Line # | Download | only in checkconf
      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         "*.out",
     17         "bad-kasp-keydir1.conf",
     18         "bad-kasp-keydir2.conf",
     19         "bad-kasp-keydir3.conf",
     20         "bad-kasp-keydir4.conf",
     21         "bad-kasp-keydir5.conf",
     22         "bad-tsig.conf",
     23         "badzero.conf",
     24         "checkconf.out*",
     25         "diff.out*",
     26         "good-kasp.conf.in",
     27         "good-server-christmas-tree.conf",
     28         "good.conf",
     29         "good.conf.raw",
     30         "keys",
     31     ]
     32 )
     33 
     34 
     35 def test_checkconf(run_tests_sh):
     36     run_tests_sh()
     37