Home | History | Annotate | Line # | Download | only in inline
      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         "K*",
     17         "*.out*",
     18         "freeze.test*",
     19         "import.key",
     20         "journalprint.out.*",
     21         "thaw.test*",
     22         "*/*.out*",
     23         "ns*/K*",
     24         "ns*/dsset-*",
     25         "ns*/*.db",
     26         "ns*/*.nzd",
     27         "ns*/*.nzf",
     28         "ns*/K*",
     29         "ns*/trusted.conf",
     30         "ns*/*.bk",
     31         "ns*/*.jbk",
     32         "ns*/*.jnl",
     33         "ns*/*.signed",
     34         "ns3/delayedkeys.conf",
     35         "ns3/removedkeys",
     36     ]
     37 )
     38 
     39 
     40 def test_inline(run_tests_sh):
     41     run_tests_sh()
     42