mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
The is not a zone between delegated.subzone.unit.tests. and unit.tests., however we get a delegated subzone error. This modifies the tests to succeed with the added record, however the tests fail as it incorrectly throws the managed subzone error. Change the name of delegated.subzone, and the tests will pass cleanly.
46 lines
913 B
YAML
46 lines
913 B
YAML
manager:
|
|
max_workers: 2
|
|
providers:
|
|
in:
|
|
class: octodns.provider.yaml.YamlProvider
|
|
directory: tests/config
|
|
supports_root_ns: False
|
|
dump:
|
|
class: octodns.provider.yaml.YamlProvider
|
|
directory: env/YAML_TMP_DIR
|
|
supports_root_ns: False
|
|
# This is sort of ugly, but it shouldn't hurt anything. It'll just write out
|
|
# the target file twice where it and dump are both used
|
|
dump2:
|
|
class: octodns.provider.yaml.YamlProvider
|
|
directory: env/YAML_TMP_DIR
|
|
supports_root_ns: False
|
|
simple:
|
|
class: helpers.SimpleProvider
|
|
geo:
|
|
class: helpers.GeoProvider
|
|
nosshfp:
|
|
class: helpers.NoSshFpProvider
|
|
zones:
|
|
unit.tests.:
|
|
sources:
|
|
- in
|
|
targets:
|
|
- dump
|
|
subzone.unit.tests.:
|
|
sources:
|
|
- in
|
|
targets:
|
|
- dump
|
|
- dump2
|
|
sub.txt.unit.tests.:
|
|
sources:
|
|
- in
|
|
targets:
|
|
- dump
|
|
empty.:
|
|
sources:
|
|
- in
|
|
targets:
|
|
- dump
|