From e473c32bfbd2babe6b3fe8f23a6861f601488c0f Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Thu, 17 Aug 2023 12:23:43 -0700 Subject: [PATCH] Add some directories to ignore --- tests/test_octodns_provider_yaml.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_octodns_provider_yaml.py b/tests/test_octodns_provider_yaml.py index 80ded06..6e0a615 100644 --- a/tests/test_octodns_provider_yaml.py +++ b/tests/test_octodns_provider_yaml.py @@ -316,6 +316,9 @@ xn--dj-kia8a: touch(join(directory, 'README.txt')) # not a zone.name.yaml touch(join(directory, 'production.yaml')) + # non-zone directories + makedirs(join(directory, 'directory')) + makedirs(join(directory, 'never.matches')) # basic yaml zone files touch(join(directory, 'unit.test.yaml'))