bind9/bin/tests/system/.gitignore
Nicki Křížek 9f4c1d1993 Use underscore for system test names
Change the convention for system test directory names to always use an
underscore rather than a hyphen. Names using underscore are valid python
package names and can be used with standard `import` facilities in
python, which allows easier code reuse.

The temporary directories for test execution and their convenience
symlinks have been switched to using hyphens rather than underscores to
keep the pytest collection, filtering and .gitignore working as
expected.
2026-03-18 14:32:33 +01:00

32 lines
567 B
Text

.cache
.hypothesis
.mypy_cache
__pycache__
dig.out*
rndc.out*
nsupdate.out*
named.lock
named.pid
named.run
/feature-test
/legacy.run.sh
/makejournal
/random.data
/*.log
/*.trs
/*.xml
/resolve
/legacy.run.sh
/run.log
/start.sh
/stop.sh
/ifconfig.sh
/isctest/vars/.build_vars/*
!/isctest/vars/.build_vars/*.in
!/isctest/vars/.build_vars/meson.build
# Ignore file names with a hyphen in their name except C files.
# This is done to ignore the temporary directories and symlinks created by the
# pytest runner, which contain underscore in their file names.
/*-*
!/*-*.c