File size: 209,546 Bytes
8f0a8fd
1
{"language": "Python", "id": 30, "repo_owner": "octodns", "repo_name": "octodns", "head_branch": "ajalil/zone-not-found-error", "workflow_name": "OctoDNS", "workflow_filename": "main.yml", "workflow_path": ".github/workflows/main.yml", "contributor": "AlizeyJalil", "sha_fail": "9e1aa7b8edfb723656f41f97bab57f9a653d5e1b", "sha_success": "98a11753994a5d3d80f84ec4db85a0deb819ba52", "workflow": "name: OctoDNS\non: [pull_request]\n\njobs:\n  config:\n    runs-on: ubuntu-latest\n    outputs:\n      json: ${{ steps.load.outputs.json }}\n    steps:\n    - uses: actions/checkout@v4\n    - id: load\n      # based on https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings\n      run: |\n        {\n          echo 'json<<EOF'\n          cat ./.ci-config.json\n          echo EOF\n        } >> $GITHUB_OUTPUT\n  ci:\n    needs: config\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false\n      matrix:\n        # Defined in a file that resides in the top level of octodns/octodns,\n        # based on dates in https://devguide.python.org/versions/#versions\n        python-version: ${{ fromJson(needs.config.outputs.json).python_versions_active }}\n    steps:\n      - uses: actions/checkout@v4\n      - name: Setup python\n        uses: actions/setup-python@v4\n        with:\n          python-version: ${{ matrix.python-version }}\n          architecture: x64\n      - name: Install dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install -r requirements.txt\n          pip install virtualenv\n      - name: CI Build\n        run: |\n          ./script/cibuild\n      - name: Store Code Coverage Data\n        # if the previous step(s) failed try anyways\n        if: always()\n        uses: actions/upload-artifact@v3\n        with:\n          name: code-coverage-${{ matrix.python-version }}\n          path: |\n            .coverage\n            coverage.xml\n            htmlcov\n  setup-py:\n    needs: config\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - name: Setup python\n        uses: actions/setup-python@v4\n        with:\n          # Most recent release from https://devguide.python.org/versions/#versions\n          python-version: ${{ fromJson(needs.config.outputs.json).python_version_current }}\n          architecture: x64\n      - name: CI setup.py\n        run: |\n          ./script/cibuild-setup-py\n", "logs": [{"step_name": "setup-py/4_CI setup.py.txt", "log": "##[group]Run ./script/cibuild-setup-py\n\u001b[36;1m./script/cibuild-setup-py\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n  pythonLocation: /opt/hostedtoolcache/Python/3.12.0/x64\n  PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.12.0/x64/lib/pkgconfig\n  Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.0/x64\n  Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.0/x64\n  Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.0/x64\n  LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.12.0/x64/lib\n##[endgroup]\n## create test venv ############################################################\nCollecting setuptools\n  Obtaining dependency information for setuptools from https://files.pythonhosted.org/packages/bb/e1/ed2dd0850446b8697ad28d118df885ad04140c64ace06c4bd559f7c8a94f/setuptools-69.0.2-py3-none-any.whl.metadata\n  Downloading setuptools-69.0.2-py3-none-any.whl.metadata (6.3 kB)\nDownloading setuptools-69.0.2-py3-none-any.whl (819 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 819.5/819.5 kB 22.3 MB/s eta 0:00:00\nInstalling collected packages: setuptools\nSuccessfully installed setuptools-69.0.2\n\n[notice] A new release of pip is available: 23.2.1 -> 23.3.1\n[notice] To update, run: pip install --upgrade pip\n## environment & versions ######################################################\nPython 3.12.0\npip 23.2.1 from /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/pip (python 3.12)\n## validate setup.py build #####################################################\nrunning build\nrunning build_py\ncreating build\ncreating build/lib\ncreating build/lib/octodns\ncopying octodns/context.py -> build/lib/octodns\ncopying octodns/deprecation.py -> build/lib/octodns\ncopying octodns/equality.py -> build/lib/octodns\ncopying octodns/__init__.py -> build/lib/octodns\ncopying octodns/zone.py -> build/lib/octodns\ncopying octodns/idna.py -> build/lib/octodns\ncopying octodns/yaml.py -> build/lib/octodns\ncopying octodns/manager.py -> build/lib/octodns\ncreating build/lib/octodns/source\ncopying octodns/source/base.py -> build/lib/octodns/source\ncopying octodns/source/__init__.py -> build/lib/octodns/source\ncopying octodns/source/tinydns.py -> build/lib/octodns/source\ncopying octodns/source/envvar.py -> build/lib/octodns/source\ncreating build/lib/octodns/cmds\ncopying octodns/cmds/sync.py -> build/lib/octodns/cmds\ncopying octodns/cmds/report.py -> build/lib/octodns/cmds\ncopying octodns/cmds/dump.py -> build/lib/octodns/cmds\ncopying octodns/cmds/args.py -> build/lib/octodns/cmds\ncopying octodns/cmds/__init__.py -> build/lib/octodns/cmds\ncopying octodns/cmds/versions.py -> build/lib/octodns/cmds\ncopying octodns/cmds/compare.py -> build/lib/octodns/cmds\ncopying octodns/cmds/validate.py -> build/lib/octodns/cmds\ncreating build/lib/octodns/record\ncopying octodns/record/base.py -> build/lib/octodns/record\ncopying octodns/record/txt.py -> build/lib/octodns/record\ncopying octodns/record/naptr.py -> build/lib/octodns/record\ncopying octodns/record/alias.py -> build/lib/octodns/record\ncopying octodns/record/geo_data.py -> build/lib/octodns/record\ncopying octodns/record/ptr.py -> build/lib/octodns/record\ncopying octodns/record/ns.py -> build/lib/octodns/record\ncopying octodns/record/cname.py -> build/lib/octodns/record\ncopying octodns/record/urlfwd.py -> build/lib/octodns/record\ncopying octodns/record/rr.py -> build/lib/octodns/record\ncopying octodns/record/target.py -> build/lib/octodns/record\ncopying octodns/record/exception.py -> build/lib/octodns/record\ncopying octodns/record/__init__.py -> build/lib/octodns/record\ncopying octodns/record/tlsa.py -> build/lib/octodns/record\ncopying octodns/record/srv.py -> build/lib/octodns/record\ncopying octodns/record/caa.py -> build/lib/octodns/record\ncopying octodns/record/dynamic.py -> build/lib/octodns/record\ncopying octodns/record/loc.py -> build/lib/octodns/record\ncopying octodns/record/chunked.py -> build/lib/octodns/record\ncopying octodns/record/ip.py -> build/lib/octodns/record\ncopying octodns/record/ds.py -> build/lib/octodns/record\ncopying octodns/record/spf.py -> build/lib/octodns/record\ncopying octodns/record/aaaa.py -> build/lib/octodns/record\ncopying octodns/record/a.py -> build/lib/octodns/record\ncopying octodns/record/subnet.py -> build/lib/octodns/record\ncopying octodns/record/change.py -> build/lib/octodns/record\ncopying octodns/record/geo.py -> build/lib/octodns/record\ncopying octodns/record/dname.py -> build/lib/octodns/record\ncopying octodns/record/sshfp.py -> build/lib/octodns/record\ncopying octodns/record/mx.py -> build/lib/octodns/record\ncreating build/lib/octodns/processor\ncopying octodns/processor/meta.py -> build/lib/octodns/processor\ncopying octodns/processor/base.py -> build/lib/octodns/processor\ncopying octodns/processor/ownership.py -> build/lib/octodns/processor\ncopying octodns/processor/filter.py -> build/lib/octodns/processor\ncopying octodns/processor/__init__.py -> build/lib/octodns/processor\ncopying octodns/processor/restrict.py -> build/lib/octodns/processor\ncopying octodns/processor/acme.py -> build/lib/octodns/processor\ncopying octodns/processor/spf.py -> build/lib/octodns/processor\ncopying octodns/processor/arpa.py -> build/lib/octodns/processor\ncreating build/lib/octodns/provider\ncopying octodns/provider/base.py -> build/lib/octodns/provider\ncopying octodns/provider/plan.py -> build/lib/octodns/provider\ncopying octodns/provider/__init__.py -> build/lib/octodns/provider\ncopying octodns/provider/yaml.py -> build/lib/octodns/provider\n## validate setup.py install ###################################################\nrunning install\n/tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.\n!!\n\n        ********************************************************************************\n        Please avoid running ``setup.py`` directly.\n        Instead, use pypa/build, pypa/installer or other\n        standards-based tools.\n\n        See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.\n        ********************************************************************************\n\n!!\n  self.initialize_options()\n/tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/setuptools/_distutils/cmd.py:66: EasyInstallDeprecationWarning: easy_install command is deprecated.\n!!\n\n        ********************************************************************************\n        Please avoid running ``setup.py`` and ``easy_install``.\n        Instead, use pypa/build, pypa/installer or other\n        standards-based tools.\n\n        See https://github.com/pypa/setuptools/issues/917 for details.\n        ********************************************************************************\n\n!!\n  self.initialize_options()\nrunning bdist_egg\nrunning egg_info\ncreating octodns.egg-info\nwriting octodns.egg-info/PKG-INFO\nwriting dependency_links to octodns.egg-info/dependency_links.txt\nwriting entry points to octodns.egg-info/entry_points.txt\nwriting requirements to octodns.egg-info/requires.txt\nwriting top-level names to octodns.egg-info/top_level.txt\nwriting manifest file 'octodns.egg-info/SOURCES.txt'\nreading manifest file 'octodns.egg-info/SOURCES.txt'\nreading manifest template 'MANIFEST.in'\nwarning: no files found matching '*.json' under directory 'tests'\nwarning: no files found matching '*.txt' under directory 'tests'\nadding license file 'LICENSE'\nwriting manifest file 'octodns.egg-info/SOURCES.txt'\ninstalling library code to build/bdist.linux-x86_64/egg\nrunning install_lib\nrunning build_py\ncopying octodns/context.py -> build/lib/octodns\ncopying octodns/deprecation.py -> build/lib/octodns\ncopying octodns/equality.py -> build/lib/octodns\ncopying octodns/__init__.py -> build/lib/octodns\ncopying octodns/zone.py -> build/lib/octodns\ncopying octodns/idna.py -> build/lib/octodns\ncopying octodns/yaml.py -> build/lib/octodns\ncopying octodns/manager.py -> build/lib/octodns\ncopying octodns/source/base.py -> build/lib/octodns/source\ncopying octodns/source/__init__.py -> build/lib/octodns/source\ncopying octodns/source/tinydns.py -> build/lib/octodns/source\ncopying octodns/source/envvar.py -> build/lib/octodns/source\ncopying octodns/cmds/sync.py -> build/lib/octodns/cmds\ncopying octodns/cmds/report.py -> build/lib/octodns/cmds\ncopying octodns/cmds/dump.py -> build/lib/octodns/cmds\ncopying octodns/cmds/args.py -> build/lib/octodns/cmds\ncopying octodns/cmds/__init__.py -> build/lib/octodns/cmds\ncopying octodns/cmds/versions.py -> build/lib/octodns/cmds\ncopying octodns/cmds/compare.py -> build/lib/octodns/cmds\ncopying octodns/cmds/validate.py -> build/lib/octodns/cmds\ncopying octodns/record/base.py -> build/lib/octodns/record\ncopying octodns/record/txt.py -> build/lib/octodns/record\ncopying octodns/record/naptr.py -> build/lib/octodns/record\ncopying octodns/record/alias.py -> build/lib/octodns/record\ncopying octodns/record/geo_data.py -> build/lib/octodns/record\ncopying octodns/record/ptr.py -> build/lib/octodns/record\ncopying octodns/record/ns.py -> build/lib/octodns/record\ncopying octodns/record/cname.py -> build/lib/octodns/record\ncopying octodns/record/urlfwd.py -> build/lib/octodns/record\ncopying octodns/record/rr.py -> build/lib/octodns/record\ncopying octodns/record/target.py -> build/lib/octodns/record\ncopying octodns/record/exception.py -> build/lib/octodns/record\ncopying octodns/record/__init__.py -> build/lib/octodns/record\ncopying octodns/record/tlsa.py -> build/lib/octodns/record\ncopying octodns/record/srv.py -> build/lib/octodns/record\ncopying octodns/record/caa.py -> build/lib/octodns/record\ncopying octodns/record/dynamic.py -> build/lib/octodns/record\ncopying octodns/record/loc.py -> build/lib/octodns/record\ncopying octodns/record/chunked.py -> build/lib/octodns/record\ncopying octodns/record/ip.py -> build/lib/octodns/record\ncopying octodns/record/ds.py -> build/lib/octodns/record\ncopying octodns/record/spf.py -> build/lib/octodns/record\ncopying octodns/record/aaaa.py -> build/lib/octodns/record\ncopying octodns/record/a.py -> build/lib/octodns/record\ncopying octodns/record/subnet.py -> build/lib/octodns/record\ncopying octodns/record/change.py -> build/lib/octodns/record\ncopying octodns/record/geo.py -> build/lib/octodns/record\ncopying octodns/record/dname.py -> build/lib/octodns/record\ncopying octodns/record/sshfp.py -> build/lib/octodns/record\ncopying octodns/record/mx.py -> build/lib/octodns/record\ncopying octodns/processor/meta.py -> build/lib/octodns/processor\ncopying octodns/processor/base.py -> build/lib/octodns/processor\ncopying octodns/processor/ownership.py -> build/lib/octodns/processor\ncopying octodns/processor/filter.py -> build/lib/octodns/processor\ncopying octodns/processor/__init__.py -> build/lib/octodns/processor\ncopying octodns/processor/restrict.py -> build/lib/octodns/processor\ncopying octodns/processor/acme.py -> build/lib/octodns/processor\ncopying octodns/processor/spf.py -> build/lib/octodns/processor\ncopying octodns/processor/arpa.py -> build/lib/octodns/processor\ncopying octodns/provider/base.py -> build/lib/octodns/provider\ncopying octodns/provider/plan.py -> build/lib/octodns/provider\ncopying octodns/provider/__init__.py -> build/lib/octodns/provider\ncopying octodns/provider/yaml.py -> build/lib/octodns/provider\ncreating build/bdist.linux-x86_64\ncreating build/bdist.linux-x86_64/egg\ncreating build/bdist.linux-x86_64/egg/octodns\ncreating build/bdist.linux-x86_64/egg/octodns/source\ncopying build/lib/octodns/source/base.py -> build/bdist.linux-x86_64/egg/octodns/source\ncopying build/lib/octodns/source/__init__.py -> build/bdist.linux-x86_64/egg/octodns/source\ncopying build/lib/octodns/source/tinydns.py -> build/bdist.linux-x86_64/egg/octodns/source\ncopying build/lib/octodns/source/envvar.py -> build/bdist.linux-x86_64/egg/octodns/source\ncreating build/bdist.linux-x86_64/egg/octodns/cmds\ncopying build/lib/octodns/cmds/sync.py -> build/bdist.linux-x86_64/egg/octodns/cmds\ncopying build/lib/octodns/cmds/report.py -> build/bdist.linux-x86_64/egg/octodns/cmds\ncopying build/lib/octodns/cmds/dump.py -> build/bdist.linux-x86_64/egg/octodns/cmds\ncopying build/lib/octodns/cmds/args.py -> build/bdist.linux-x86_64/egg/octodns/cmds\ncopying build/lib/octodns/cmds/__init__.py -> build/bdist.linux-x86_64/egg/octodns/cmds\ncopying build/lib/octodns/cmds/versions.py -> build/bdist.linux-x86_64/egg/octodns/cmds\ncopying build/lib/octodns/cmds/compare.py -> build/bdist.linux-x86_64/egg/octodns/cmds\ncopying build/lib/octodns/cmds/validate.py -> build/bdist.linux-x86_64/egg/octodns/cmds\ncopying build/lib/octodns/context.py -> build/bdist.linux-x86_64/egg/octodns\ncopying build/lib/octodns/deprecation.py -> build/bdist.linux-x86_64/egg/octodns\ncreating build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/base.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/txt.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/naptr.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/alias.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/geo_data.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/ptr.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/ns.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/cname.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/urlfwd.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/rr.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/target.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/exception.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/__init__.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/tlsa.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/srv.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/caa.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/dynamic.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/loc.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/chunked.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/ip.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/ds.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/spf.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/aaaa.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/a.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/subnet.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/change.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/geo.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/dname.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/sshfp.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/record/mx.py -> build/bdist.linux-x86_64/egg/octodns/record\ncopying build/lib/octodns/equality.py -> build/bdist.linux-x86_64/egg/octodns\ncopying build/lib/octodns/__init__.py -> build/bdist.linux-x86_64/egg/octodns\ncreating build/bdist.linux-x86_64/egg/octodns/processor\ncopying build/lib/octodns/processor/meta.py -> build/bdist.linux-x86_64/egg/octodns/processor\ncopying build/lib/octodns/processor/base.py -> build/bdist.linux-x86_64/egg/octodns/processor\ncopying build/lib/octodns/processor/ownership.py -> build/bdist.linux-x86_64/egg/octodns/processor\ncopying build/lib/octodns/processor/filter.py -> build/bdist.linux-x86_64/egg/octodns/processor\ncopying build/lib/octodns/processor/__init__.py -> build/bdist.linux-x86_64/egg/octodns/processor\ncopying build/lib/octodns/processor/restrict.py -> build/bdist.linux-x86_64/egg/octodns/processor\ncopying build/lib/octodns/processor/acme.py -> build/bdist.linux-x86_64/egg/octodns/processor\ncopying build/lib/octodns/processor/spf.py -> build/bdist.linux-x86_64/egg/octodns/processor\ncopying build/lib/octodns/processor/arpa.py -> build/bdist.linux-x86_64/egg/octodns/processor\ncopying build/lib/octodns/zone.py -> build/bdist.linux-x86_64/egg/octodns\ncopying build/lib/octodns/idna.py -> build/bdist.linux-x86_64/egg/octodns\ncreating build/bdist.linux-x86_64/egg/octodns/provider\ncopying build/lib/octodns/provider/base.py -> build/bdist.linux-x86_64/egg/octodns/provider\ncopying build/lib/octodns/provider/plan.py -> build/bdist.linux-x86_64/egg/octodns/provider\ncopying build/lib/octodns/provider/__init__.py -> build/bdist.linux-x86_64/egg/octodns/provider\ncopying build/lib/octodns/provider/yaml.py -> build/bdist.linux-x86_64/egg/octodns/provider\ncopying build/lib/octodns/yaml.py -> build/bdist.linux-x86_64/egg/octodns\ncopying build/lib/octodns/manager.py -> build/bdist.linux-x86_64/egg/octodns\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/source/base.py to base.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/source/__init__.py to __init__.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/source/tinydns.py to tinydns.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/source/envvar.py to envvar.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/cmds/sync.py to sync.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/cmds/report.py to report.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/cmds/dump.py to dump.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/cmds/args.py to args.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/cmds/__init__.py to __init__.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/cmds/versions.py to versions.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/cmds/compare.py to compare.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/cmds/validate.py to validate.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/context.py to context.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/deprecation.py to deprecation.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/base.py to base.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/txt.py to txt.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/naptr.py to naptr.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/alias.py to alias.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/geo_data.py to geo_data.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/ptr.py to ptr.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/ns.py to ns.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/cname.py to cname.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/urlfwd.py to urlfwd.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/rr.py to rr.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/target.py to target.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/exception.py to exception.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/__init__.py to __init__.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/tlsa.py to tlsa.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/srv.py to srv.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/caa.py to caa.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/dynamic.py to dynamic.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/loc.py to loc.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/chunked.py to chunked.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/ip.py to ip.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/ds.py to ds.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/spf.py to spf.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/aaaa.py to aaaa.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/a.py to a.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/subnet.py to subnet.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/change.py to change.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/geo.py to geo.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/dname.py to dname.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/sshfp.py to sshfp.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/record/mx.py to mx.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/equality.py to equality.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/__init__.py to __init__.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/processor/meta.py to meta.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/processor/base.py to base.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/processor/ownership.py to ownership.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/processor/filter.py to filter.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/processor/__init__.py to __init__.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/processor/restrict.py to restrict.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/processor/acme.py to acme.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/processor/spf.py to spf.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/processor/arpa.py to arpa.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/zone.py to zone.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/idna.py to idna.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/provider/base.py to base.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/provider/plan.py to plan.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/provider/__init__.py to __init__.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/provider/yaml.py to yaml.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/yaml.py to yaml.cpython-312.pyc\nbyte-compiling build/bdist.linux-x86_64/egg/octodns/manager.py to manager.cpython-312.pyc\ncreating build/bdist.linux-x86_64/egg/EGG-INFO\ncopying octodns.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO\ncopying octodns.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO\ncopying octodns.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO\ncopying octodns.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO\ncopying octodns.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO\ncopying octodns.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO\nzip_safe flag not set; analyzing archive contents...\ncreating dist\ncreating 'dist/octodns-1.4.0-py3.12.egg' and adding 'build/bdist.linux-x86_64/egg' to it\nremoving 'build/bdist.linux-x86_64/egg' (and everything under it)\nProcessing octodns-1.4.0-py3.12.egg\nCopying octodns-1.4.0-py3.12.egg to /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages\nAdding octodns 1.4.0 to easy-install.pth file\nInstalling octodns-compare script to /tmp/ci-9dr3sWv5MQ/bin\nInstalling octodns-dump script to /tmp/ci-9dr3sWv5MQ/bin\nInstalling octodns-report script to /tmp/ci-9dr3sWv5MQ/bin\nInstalling octodns-sync script to /tmp/ci-9dr3sWv5MQ/bin\nInstalling octodns-validate script to /tmp/ci-9dr3sWv5MQ/bin\nInstalling octodns-versions script to /tmp/ci-9dr3sWv5MQ/bin\n\nInstalled /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/octodns-1.4.0-py3.12.egg\nProcessing dependencies for octodns==1.4.0\nSearching for python-dateutil>=2.8.1\nReading https://pypi.org/simple/python-dateutil/\nDownloading https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl#sha256=961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9\nBest match: python-dateutil 2.8.2\nProcessing python_dateutil-2.8.2-py2.py3-none-any.whl\nInstalling python_dateutil-2.8.2-py2.py3-none-any.whl to /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages\nAdding python-dateutil 2.8.2 to easy-install.pth file\ndetected new path './octodns-1.4.0-py3.12.egg'\n\nInstalled /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/python_dateutil-2.8.2-py3.12.egg\nSearching for natsort>=5.5.0\nReading https://pypi.org/simple/natsort/\nDownloading https://files.pythonhosted.org/packages/ef/82/7a9d0550484a62c6da82858ee9419f3dd1ccc9aa1c26a1e43da3ecd20b0d/natsort-8.4.0-py3-none-any.whl#sha256=4732914fb471f56b5cce04d7bae6f164a592c7712e1c85f9ef585e197299521c\nBest match: natsort 8.4.0\nProcessing natsort-8.4.0-py3-none-any.whl\nInstalling natsort-8.4.0-py3-none-any.whl to /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages\nAdding natsort 8.4.0 to easy-install.pth file\ndetected new path './python_dateutil-2.8.2-py3.12.egg'\nInstalling natsort script to /tmp/ci-9dr3sWv5MQ/bin\n\nInstalled /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/natsort-8.4.0-py3.12.egg\nSearching for idna>=3.3\nReading https://pypi.org/simple/idna/\nDownloading https://files.pythonhosted.org/packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl#sha256=c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f\nBest match: idna 3.6\nProcessing idna-3.6-py3-none-any.whl\nInstalling idna-3.6-py3-none-any.whl to /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages\nAdding idna 3.6 to easy-install.pth file\ndetected new path './natsort-8.4.0-py3.12.egg'\n\nInstalled /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/idna-3.6-py3.12.egg\nSearching for fqdn>=1.5.0\nReading https://pypi.org/simple/fqdn/\nDownloading https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl#sha256=3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014\nBest match: fqdn 1.5.1\nProcessing fqdn-1.5.1-py3-none-any.whl\nInstalling fqdn-1.5.1-py3-none-any.whl to /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages\nAdding fqdn 1.5.1 to easy-install.pth file\ndetected new path './idna-3.6-py3.12.egg'\n\nInstalled /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/fqdn-1.5.1-py3.12.egg\nSearching for dnspython>=2.2.1\nReading https://pypi.org/simple/dnspython/\nDownloading https://files.pythonhosted.org/packages/f6/b4/0a9bee52c50f226a3cbfb54263d02bb421c7f2adc136520729c2c689c1e5/dnspython-2.4.2-py3-none-any.whl#sha256=57c6fbaaeaaf39c891292012060beb141791735dbb4004798328fc2c467402d8\nBest match: dnspython 2.4.2\nProcessing dnspython-2.4.2-py3-none-any.whl\nInstalling dnspython-2.4.2-py3-none-any.whl to /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages\nAdding dnspython 2.4.2 to easy-install.pth file\ndetected new path './fqdn-1.5.1-py3.12.egg'\n\nInstalled /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/dnspython-2.4.2-py3.12.egg\nSearching for PyYaml>=4.2b1\nReading https://pypi.org/simple/PyYaml/\nDownloading https://files.pythonhosted.org/packages/b4/33/720548182ffa8344418126017aa1d4ab4aeec9a2275f04ce3f3573d8ace8/PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0\nBest match: PyYAML 6.0.1\nProcessing PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\nInstalling PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl to /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages\nAdding PyYAML 6.0.1 to easy-install.pth file\ndetected new path './dnspython-2.4.2-py3.12.egg'\n\nInstalled /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/PyYAML-6.0.1-py3.12-linux-x86_64.egg\nSearching for six>=1.5\nReading https://pypi.org/simple/six/\nDownloading https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl#sha256=8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\nBest match: six 1.16.0\nProcessing six-1.16.0-py2.py3-none-any.whl\nInstalling six-1.16.0-py2.py3-none-any.whl to /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages\nAdding six 1.16.0 to easy-install.pth file\ndetected new path './PyYAML-6.0.1-py3.12-linux-x86_64.egg'\n\nInstalled /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/six-1.16.0-py3.12.egg\nFinished processing dependencies for octodns==1.4.0\n## validate tests can run against installed code ###############################\nDEPRECATION: Loading egg at /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/octodns-1.4.0-py3.12.egg is deprecated. pip 23.3 will enforce this behaviour change. A possible replacement is to use pip for package installation..\nDEPRECATION: Loading egg at /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/fqdn-1.5.1-py3.12.egg is deprecated. pip 23.3 will enforce this behaviour change. A possible replacement is to use pip for package installation..\nDEPRECATION: Loading egg at /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/PyYAML-6.0.1-py3.12-linux-x86_64.egg is deprecated. pip 23.3 will enforce this behaviour change. A possible replacement is to use pip for package installation..\nDEPRECATION: Loading egg at /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/dnspython-2.4.2-py3.12.egg is deprecated. pip 23.3 will enforce this behaviour change. A possible replacement is to use pip for package installation..\nDEPRECATION: Loading egg at /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/natsort-8.4.0-py3.12.egg is deprecated. pip 23.3 will enforce this behaviour change. A possible replacement is to use pip for package installation..\nDEPRECATION: Loading egg at /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/python_dateutil-2.8.2-py3.12.egg is deprecated. pip 23.3 will enforce this behaviour change. A possible replacement is to use pip for package installation..\nDEPRECATION: Loading egg at /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/idna-3.6-py3.12.egg is deprecated. pip 23.3 will enforce this behaviour change. A possible replacement is to use pip for package installation..\nDEPRECATION: Loading egg at /tmp/ci-9dr3sWv5MQ/lib/python3.12/site-packages/six-1.16.0-py3.12.egg is deprecated. pip 23.3 will enforce this behaviour change. A possible replacement is to use pip for package installation..\nCollecting pytest\n  Obtaining dependency information for pytest from https://files.pythonhosted.org/packages/f3/8c/f16efd81ca8e293b2cc78f111190a79ee539d0d5d36ccd49975cb3beac60/pytest-7.4.3-py3-none-any.whl.metadata\n  Downloading pytest-7.4.3-py3-none-any.whl.metadata (7.9 kB)\nCollecting pytest-network\n  Downloading pytest_network-0.0.1.tar.gz (2.8 kB)\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting iniconfig (from pytest)\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting packaging (from pytest)\n  Obtaining dependency information for packaging from https://files.pythonhosted.org/packages/ec/1a/610693ac4ee14fcdf2d9bf3c493370e4f2ef7ae2e19217d7a237ff42367d/packaging-23.2-py3-none-any.whl.metadata\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pluggy<2.0,>=0.12 (from pytest)\n  Obtaining dependency information for pluggy<2.0,>=0.12 from https://files.pythonhosted.org/packages/05/b8/42ed91898d4784546c5f06c60506400548db3f7a4b3fb441cba4e5c17952/pluggy-1.3.0-py3-none-any.whl.metadata\n  Downloading pluggy-1.3.0-py3-none-any.whl.metadata (4.3 kB)\nDownloading pytest-7.4.3-py3-none-any.whl (325 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 325.1/325.1 kB 18.1 MB/s eta 0:00:00\nDownloading pluggy-1.3.0-py3-none-any.whl (18 kB)\nDownloading packaging-23.2-py3-none-any.whl (53 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 53.0/53.0 kB 24.7 MB/s eta 0:00:00\nBuilding wheels for collected packages: pytest-network\n  Building wheel for pytest-network (pyproject.toml): started\n  Building wheel for pytest-network (pyproject.toml): finished with status 'done'\n  Created wheel for pytest-network: filename=pytest_network-0.0.1-py3-none-any.whl size=2960 sha256=22094e1794e91a71cafae0c7499310ab87d524ac8ee14440dab54f00c22bd869\n  Stored in directory: /home/runner/.cache/pip/wheels/e9/6b/5a/3160ef803b88264fbb8882984c076ae87b75c5297a401103e4\nSuccessfully built pytest-network\nInstalling collected packages: pluggy, packaging, iniconfig, pytest, pytest-network\nSuccessfully installed iniconfig-2.0.0 packaging-23.2 pluggy-1.3.0 pytest-7.4.3 pytest-network-0.0.1\n\n[notice] A new release of pip is available: 23.2.1 -> 23.3.1\n[notice] To update, run: pip install --upgrade pip\n============================= test session starts ==============================\nplatform linux -- Python 3.12.0, pytest-7.4.3, pluggy-1.3.0\nrootdir: /home/runner/work/octodns/octodns\nconfigfile: pyproject.toml\nplugins: network-0.0.1\ncollected 294 items\n\ntests/test_octodns_equality.py ..                                        [  0%]\ntests/test_octodns_idna.py .........                                     [  3%]\ntests/test_octodns_manager.py ...........................F.............. [ 18%]\n                                                                         [ 18%]\ntests/test_octodns_plan.py ..........                                    [ 21%]\ntests/test_octodns_processor_acme.py .                                   [ 21%]\ntests/test_octodns_processor_arpa.py .........                           [ 24%]\ntests/test_octodns_processor_filter.py ................                  [ 30%]\ntests/test_octodns_processor_meta.py ......                              [ 32%]\ntests/test_octodns_processor_ownership.py ...                            [ 33%]\ntests/test_octodns_processor_restrict.py .                               [ 33%]\ntests/test_octodns_processor_spf.py .......                              [ 36%]\ntests/test_octodns_provider_base.py ................................     [ 46%]\ntests/test_octodns_provider_yaml.py ...................                  [ 53%]\ntests/test_octodns_record.py .........................                   [ 61%]\ntests/test_octodns_record_a.py ..                                        [ 62%]\ntests/test_octodns_record_aaaa.py ...                                    [ 63%]\ntests/test_octodns_record_alias.py ...                                   [ 64%]\ntests/test_octodns_record_caa.py ....                                    [ 65%]\ntests/test_octodns_record_change.py ..                                   [ 66%]\ntests/test_octodns_record_chunked.py .                                   [ 67%]\ntests/test_octodns_record_cname.py ...                                   [ 68%]\ntests/test_octodns_record_dname.py ...                                   [ 69%]\ntests/test_octodns_record_ds.py .                                        [ 69%]\ntests/test_octodns_record_dynamic.py ................                    [ 74%]\ntests/test_octodns_record_geo.py .......                                 [ 77%]\ntests/test_octodns_record_ip.py .                                        [ 77%]\ntests/test_octodns_record_loc.py ....                                    [ 78%]\ntests/test_octodns_record_mx.py ....                                     [ 80%]\ntests/test_octodns_record_naptr.py ...                                   [ 81%]\ntests/test_octodns_record_ns.py ...                                      [ 82%]\ntests/test_octodns_record_ptr.py ...                                     [ 83%]\ntests/test_octodns_record_spf.py ..                                      [ 84%]\ntests/test_octodns_record_srv.py ....                                    [ 85%]\ntests/test_octodns_record_sshfp.py ....                                  [ 86%]\ntests/test_octodns_record_target.py .                                    [ 87%]\ntests/test_octodns_record_tlsa.py ...                                    [ 88%]\ntests/test_octodns_record_txt.py ....                                    [ 89%]\ntests/test_octodns_record_urlfwd.py ..                                   [ 90%]\ntests/test_octodns_source_envvar.py ..                                   [ 90%]\ntests/test_octodns_source_tinydns.py .....                               [ 92%]\ntests/test_octodns_yaml.py ..                                            [ 93%]\ntests/test_octodns_zone.py ....................                          [100%]\n\n=================================== FAILURES ===================================\n________________________ TestManager.test_missing_zone _________________________\n\nself = <test_octodns_manager.TestManager testMethod=test_missing_zone>\n\n    def test_missing_zone(self):\n        with self.assertRaises(ManagerException) as ctx:\n            Manager(get_config_filename('dynamic-config.yaml')).sync(\n                ['missing.zones.']\n            )\n>       self.assertTrue('Requested zone:' in str(ctx.exception))\nE       AssertionError: False is not true\n\ntests/test_octodns_manager.py:87: AssertionError\n=========================== short test summary info ============================\nFAILED tests/test_octodns_manager.py::TestManager::test_missing_zone - AssertionError: False is not true\n======================== 1 failed, 293 passed in 2.63s =========================\n##[error]Process completed with exit code 1.\n"}, {"step_name": "ci (3.8)/5_CI Build.txt", "log": "##[group]Run ./script/cibuild\n\u001b[36;1m./script/cibuild\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n  pythonLocation: /opt/hostedtoolcache/Python/3.8.18/x64\n  PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.8.18/x64/lib/pkgconfig\n  Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.8.18/x64\n  Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.8.18/x64\n  Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.8.18/x64\n  LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.8.18/x64/lib\n##[endgroup]\n## bootstrap ###################################################################\nRequirement already satisfied: pip>=10.0.1 in ./env/lib/python3.8/site-packages (23.0.1)\nCollecting pip>=10.0.1\n  Downloading pip-23.3.1-py3-none-any.whl (2.1 MB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 2.1/2.1 MB 38.2 MB/s eta 0:00:00\nInstalling collected packages: pip\n  Attempting uninstall: pip\n    Found existing installation: pip 23.0.1\n    Uninstalling pip-23.0.1:\n      Successfully uninstalled pip-23.0.1\nSuccessfully installed pip-23.3.1\nCollecting PyYAML==6.0.1 (from -r requirements.txt (line 2))\n  Using cached PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)\nCollecting dnspython==2.4.2 (from -r requirements.txt (line 3))\n  Using cached dnspython-2.4.2-py3-none-any.whl.metadata (4.9 kB)\nCollecting fqdn==1.5.1 (from -r requirements.txt (line 4))\n  Using cached fqdn-1.5.1-py3-none-any.whl (9.1 kB)\nCollecting idna==3.4 (from -r requirements.txt (line 5))\n  Using cached idna-3.4-py3-none-any.whl (61 kB)\nCollecting natsort==8.4.0 (from -r requirements.txt (line 6))\n  Using cached natsort-8.4.0-py3-none-any.whl.metadata (21 kB)\nCollecting python-dateutil==2.8.2 (from -r requirements.txt (line 7))\n  Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)\nCollecting six==1.16.0 (from -r requirements.txt (line 8))\n  Using cached six-1.16.0-py2.py3-none-any.whl (11 kB)\nUsing cached PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (736 kB)\nUsing cached dnspython-2.4.2-py3-none-any.whl (300 kB)\nUsing cached natsort-8.4.0-py3-none-any.whl (38 kB)\nInstalling collected packages: six, PyYAML, natsort, idna, fqdn, dnspython, python-dateutil\nSuccessfully installed PyYAML-6.0.1 dnspython-2.4.2 fqdn-1.5.1 idna-3.4 natsort-8.4.0 python-dateutil-2.8.2 six-1.16.0\nCollecting Pygments==2.17.2 (from -r requirements-dev.txt (line 2))\n  Downloading pygments-2.17.2-py3-none-any.whl.metadata (2.6 kB)\nCollecting black==23.11.0 (from -r requirements-dev.txt (line 3))\n  Downloading black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (66 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 66.9/66.9 kB 4.3 MB/s eta 0:00:00\nCollecting build==1.0.3 (from -r requirements-dev.txt (line 4))\n  Downloading build-1.0.3-py3-none-any.whl.metadata (4.2 kB)\nCollecting certifi==2023.11.17 (from -r requirements-dev.txt (line 5))\n  Downloading certifi-2023.11.17-py3-none-any.whl.metadata (2.2 kB)\nCollecting cffi==1.16.0 (from -r requirements-dev.txt (line 6))\n  Downloading cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)\nCollecting charset-normalizer==3.3.2 (from -r requirements-dev.txt (line 7))\n  Downloading charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)\nCollecting click==8.1.7 (from -r requirements-dev.txt (line 8))\n  Downloading click-8.1.7-py3-none-any.whl.metadata (3.0 kB)\nCollecting cmarkgfm==2022.10.27 (from -r requirements-dev.txt (line 9))\n  Downloading cmarkgfm-2022.10.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 435.2/435.2 kB 43.2 MB/s eta 0:00:00\nCollecting coverage==7.3.2 (from -r requirements-dev.txt (line 10))\n  Downloading coverage-7.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB)\nCollecting docutils==0.20.1 (from -r requirements-dev.txt (line 11))\n  Downloading docutils-0.20.1-py3-none-any.whl.metadata (2.8 kB)\nCollecting exceptiongroup==1.2.0 (from -r requirements-dev.txt (line 12))\n  Downloading exceptiongroup-1.2.0-py3-none-any.whl.metadata (6.6 kB)\nCollecting importlib-metadata==6.8.0 (from -r requirements-dev.txt (line 13))\n  Downloading importlib_metadata-6.8.0-py3-none-any.whl.metadata (5.1 kB)\nCollecting iniconfig==2.0.0 (from -r requirements-dev.txt (line 14))\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting isort==5.12.0 (from -r requirements-dev.txt (line 15))\n  Downloading isort-5.12.0-py3-none-any.whl (91 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 91.2/91.2 kB 22.6 MB/s eta 0:00:00\nCollecting jaraco.classes==3.3.0 (from -r requirements-dev.txt (line 16))\n  Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)\nCollecting keyring==24.3.0 (from -r requirements-dev.txt (line 17))\n  Downloading keyring-24.3.0-py3-none-any.whl.metadata (20 kB)\nCollecting markdown-it-py==3.0.0 (from -r requirements-dev.txt (line 18))\n  Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB)\nCollecting mdurl==0.1.2 (from -r requirements-dev.txt (line 19))\n  Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)\nCollecting more-itertools==10.1.0 (from -r requirements-dev.txt (line 20))\n  Downloading more_itertools-10.1.0-py3-none-any.whl.metadata (33 kB)\nCollecting mypy-extensions==1.0.0 (from -r requirements-dev.txt (line 21))\n  Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB)\nCollecting nh3==0.2.14 (from -r requirements-dev.txt (line 22))\n  Downloading nh3-0.2.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.6 kB)\nCollecting packaging==23.2 (from -r requirements-dev.txt (line 23))\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pathspec==0.11.2 (from -r requirements-dev.txt (line 24))\n  Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)\nCollecting pkginfo==1.9.6 (from -r requirements-dev.txt (line 25))\n  Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)\nCollecting platformdirs==4.0.0 (from -r requirements-dev.txt (line 26))\n  Downloading platformdirs-4.0.0-py3-none-any.whl.metadata (11 kB)\nCollecting pluggy==1.3.0 (from -r requirements-dev.txt (line 27))\n  Downloading pluggy-1.3.0-py3-none-any.whl.metadata (4.3 kB)\nCollecting pprintpp==0.4.0 (from -r requirements-dev.txt (line 28))\n  Downloading pprintpp-0.4.0-py2.py3-none-any.whl (16 kB)\nCollecting pycountry-convert==0.7.2 (from -r requirements-dev.txt (line 29))\n  Downloading pycountry_convert-0.7.2-py3-none-any.whl (13 kB)\nCollecting pycountry==22.3.5 (from -r requirements-dev.txt (line 30))\n  Downloading pycountry-22.3.5.tar.gz (10.1 MB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 10.1/10.1 MB 100.5 MB/s eta 0:00:00\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting pycparser==2.21 (from -r requirements-dev.txt (line 31))\n  Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 118.7/118.7 kB 32.7 MB/s eta 0:00:00\nCollecting pyflakes==3.1.0 (from -r requirements-dev.txt (line 32))\n  Downloading pyflakes-3.1.0-py2.py3-none-any.whl.metadata (3.5 kB)\nCollecting pyproject_hooks==1.0.0 (from -r requirements-dev.txt (line 33))\n  Downloading pyproject_hooks-1.0.0-py3-none-any.whl (9.3 kB)\nCollecting pytest-cov==4.1.0 (from -r requirements-dev.txt (line 34))\n  Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB)\nCollecting pytest-mock==3.12.0 (from -r requirements-dev.txt (line 35))\n  Downloading pytest_mock-3.12.0-py3-none-any.whl.metadata (3.8 kB)\nCollecting pytest-network==0.0.1 (from -r requirements-dev.txt (line 36))\n  Downloading pytest_network-0.0.1.tar.gz (2.8 kB)\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting pytest==7.4.3 (from -r requirements-dev.txt (line 37))\n  Downloading pytest-7.4.3-py3-none-any.whl.metadata (7.9 kB)\nCollecting readme-renderer==42.0 (from -r requirements-dev.txt (line 38))\n  Downloading readme_renderer-42.0-py3-none-any.whl.metadata (2.8 kB)\nCollecting repoze.lru==0.7 (from -r requirements-dev.txt (line 39))\n  Downloading repoze.lru-0.7-py3-none-any.whl (10 kB)\nCollecting requests-toolbelt==1.0.0 (from -r requirements-dev.txt (line 40))\n  Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 54.5/54.5 kB 14.1 MB/s eta 0:00:00\nCollecting requests==2.31.0 (from -r requirements-dev.txt (line 41))\n  Downloading requests-2.31.0-py3-none-any.whl.metadata (4.6 kB)\nCollecting rfc3986==2.0.0 (from -r requirements-dev.txt (line 42))\n  Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\nCollecting rich==13.7.0 (from -r requirements-dev.txt (line 43))\n  Downloading rich-13.7.0-py3-none-any.whl.metadata (18 kB)\nCollecting tomli==2.0.1 (from -r requirements-dev.txt (line 44))\n  Downloading tomli-2.0.1-py3-none-any.whl (12 kB)\nCollecting twine==4.0.2 (from -r requirements-dev.txt (line 45))\n  Downloading twine-4.0.2-py3-none-any.whl (36 kB)\nCollecting typing_extensions==4.8.0 (from -r requirements-dev.txt (line 46))\n  Downloading typing_extensions-4.8.0-py3-none-any.whl.metadata (3.0 kB)\nCollecting urllib3==2.1.0 (from -r requirements-dev.txt (line 47))\n  Downloading urllib3-2.1.0-py3-none-any.whl.metadata (6.4 kB)\nCollecting zipp==3.17.0 (from -r requirements-dev.txt (line 48))\n  Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)\nCollecting importlib-resources (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading importlib_resources-6.1.1-py3-none-any.whl.metadata (4.1 kB)\nCollecting SecretStorage>=3.2 (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2 (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 48.4/48.4 kB 13.3 MB/s eta 0:00:00\nCollecting wheel>=0.30.0 (from pycountry-convert==0.7.2->-r requirements-dev.txt (line 29))\n  Using cached wheel-0.42.0-py3-none-any.whl.metadata (2.2 kB)\nRequirement already satisfied: setuptools in ./env/lib/python3.8/site-packages (from pycountry==22.3.5->-r requirements-dev.txt (line 30)) (56.0.0)\nRequirement already satisfied: idna<4,>=2.5 in ./env/lib/python3.8/site-packages (from requests==2.31.0->-r requirements-dev.txt (line 41)) (3.4)\nCollecting cryptography>=2.0 (from SecretStorage>=3.2->keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)\nDownloading pygments-2.17.2-py3-none-any.whl (1.2 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.2/1.2 MB 100.1 MB/s eta 0:00:00\nDownloading black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.7/1.7 MB 103.6 MB/s eta 0:00:00\nDownloading build-1.0.3-py3-none-any.whl (18 kB)\nDownloading certifi-2023.11.17-py3-none-any.whl (162 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 162.5/162.5 kB 44.6 MB/s eta 0:00:00\nDownloading cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (444 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 444.7/444.7 kB 77.3 MB/s eta 0:00:00\nDownloading charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 141.1/141.1 kB 33.0 MB/s eta 0:00:00\nDownloading click-8.1.7-py3-none-any.whl (97 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 97.9/97.9 kB 28.4 MB/s eta 0:00:00\nDownloading coverage-7.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (228 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 228.6/228.6 kB 39.2 MB/s eta 0:00:00\nDownloading docutils-0.20.1-py3-none-any.whl (572 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 572.7/572.7 kB 83.8 MB/s eta 0:00:00\nDownloading exceptiongroup-1.2.0-py3-none-any.whl (16 kB)\nDownloading importlib_metadata-6.8.0-py3-none-any.whl (22 kB)\nDownloading jaraco.classes-3.3.0-py3-none-any.whl (5.9 kB)\nDownloading keyring-24.3.0-py3-none-any.whl (38 kB)\nDownloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 87.5/87.5 kB 26.5 MB/s eta 0:00:00\nDownloading more_itertools-10.1.0-py3-none-any.whl (55 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 55.8/55.8 kB 18.2 MB/s eta 0:00:00\nDownloading nh3-0.2.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.7/1.7 MB 101.7 MB/s eta 0:00:00\nDownloading packaging-23.2-py3-none-any.whl (53 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 53.0/53.0 kB 18.2 MB/s eta 0:00:00\nDownloading pathspec-0.11.2-py3-none-any.whl (29 kB)\nDownloading platformdirs-4.0.0-py3-none-any.whl (17 kB)\nDownloading pluggy-1.3.0-py3-none-any.whl (18 kB)\nDownloading pyflakes-3.1.0-py2.py3-none-any.whl (62 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 62.6/62.6 kB 19.7 MB/s eta 0:00:00\nDownloading pytest_cov-4.1.0-py3-none-any.whl (21 kB)\nDownloading pytest_mock-3.12.0-py3-none-any.whl (9.8 kB)\nDownloading pytest-7.4.3-py3-none-any.whl (325 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 325.1/325.1 kB 66.8 MB/s eta 0:00:00\nDownloading readme_renderer-42.0-py3-none-any.whl (13 kB)\nDownloading requests-2.31.0-py3-none-any.whl (62 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 62.6/62.6 kB 19.8 MB/s eta 0:00:00\nDownloading rich-13.7.0-py3-none-any.whl (240 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 240.6/240.6 kB 57.4 MB/s eta 0:00:00\nDownloading typing_extensions-4.8.0-py3-none-any.whl (31 kB)\nDownloading urllib3-2.1.0-py3-none-any.whl (104 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 104.6/104.6 kB 32.9 MB/s eta 0:00:00\nDownloading zipp-3.17.0-py3-none-any.whl (7.4 kB)\nUsing cached wheel-0.42.0-py3-none-any.whl (65 kB)\nDownloading importlib_resources-6.1.1-py3-none-any.whl (33 kB)\nDownloading cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl (4.4 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 4.4/4.4 MB 115.5 MB/s eta 0:00:00\nBuilding wheels for collected packages: pycountry, pytest-network\n  Building wheel for pycountry (pyproject.toml): started\n  Building wheel for pycountry (pyproject.toml): finished with status 'done'\n  Created wheel for pycountry: filename=pycountry-22.3.5-py2.py3-none-any.whl size=10681832 sha256=d1efa3fdc10b7cb0b7b8b8f1012481528009e4490b3faaa06ee38e1b9ea57670\n  Stored in directory: /home/runner/.cache/pip/wheels/e2/aa/0f/c224e473b464387170b83ca7c66947b4a7e33e8d903a679748\n  Building wheel for pytest-network (pyproject.toml): started\n  Building wheel for pytest-network (pyproject.toml): finished with status 'done'\n  Created wheel for pytest-network: filename=pytest_network-0.0.1-py3-none-any.whl size=2960 sha256=24da58c82e13f91081bb40b702b062338869cd9ee767af1c246e8821c08234c1\n  Stored in directory: /home/runner/.cache/pip/wheels/d0/cd/95/bbd94d9b57657ea602b3a99e8f975fc12d458c3d534a65a542\nSuccessfully built pycountry pytest-network\nInstalling collected packages: repoze.lru, pprintpp, nh3, zipp, wheel, urllib3, typing_extensions, tomli, rfc3986, Pygments, pyflakes, pycparser, pycountry, pluggy, platformdirs, pkginfo, pathspec, packaging, mypy-extensions, more-itertools, mdurl, jeepney, isort, iniconfig, exceptiongroup, docutils, coverage, click, charset-normalizer, certifi, requests, readme-renderer, pytest, pyproject_hooks, markdown-it-py, jaraco.classes, importlib-resources, importlib-metadata, cffi, black, rich, requests-toolbelt, pytest-network, pytest-mock, pytest-cov, cryptography, cmarkgfm, build, SecretStorage, pycountry-convert, keyring, twine\nSuccessfully installed Pygments-2.17.2 SecretStorage-3.3.3 black-23.11.0 build-1.0.3 certifi-2023.11.17 cffi-1.16.0 charset-normalizer-3.3.2 click-8.1.7 cmarkgfm-2022.10.27 coverage-7.3.2 cryptography-41.0.7 docutils-0.20.1 exceptiongroup-1.2.0 importlib-metadata-6.8.0 importlib-resources-6.1.1 iniconfig-2.0.0 isort-5.12.0 jaraco.classes-3.3.0 jeepney-0.8.0 keyring-24.3.0 markdown-it-py-3.0.0 mdurl-0.1.2 more-itertools-10.1.0 mypy-extensions-1.0.0 nh3-0.2.14 packaging-23.2 pathspec-0.11.2 pkginfo-1.9.6 platformdirs-4.0.0 pluggy-1.3.0 pprintpp-0.4.0 pycountry-22.3.5 pycountry-convert-0.7.2 pycparser-2.21 pyflakes-3.1.0 pyproject_hooks-1.0.0 pytest-7.4.3 pytest-cov-4.1.0 pytest-mock-3.12.0 pytest-network-0.0.1 readme-renderer-42.0 repoze.lru-0.7 requests-2.31.0 requests-toolbelt-1.0.0 rfc3986-2.0.0 rich-13.7.0 tomli-2.0.1 twine-4.0.2 typing_extensions-4.8.0 urllib3-2.1.0 wheel-0.42.0 zipp-3.17.0\n\nSetting blame.ignoreRevsFile to .git-blame-ingore-revs\n\nInstalling pre-commit hook\n\nRun source env/bin/activate to get your shell in to the virtualenv\nSee README.md for more information.\n\n## environment & versions ######################################################\nPython 3.8.18\npip 23.3.1 from /home/runner/work/octodns/octodns/env/lib/python3.8/site-packages/pip (python 3.8)\n## modules: \nblack==23.11.0\nbuild==1.0.3\ncertifi==2023.11.17\ncffi==1.16.0\ncharset-normalizer==3.3.2\nclick==8.1.7\ncmarkgfm==2022.10.27\ncoverage==7.3.2\ncryptography==41.0.7\ndnspython==2.4.2\ndocutils==0.20.1\nexceptiongroup==1.2.0\nfqdn==1.5.1\nidna==3.4\nimportlib-metadata==6.8.0\nimportlib-resources==6.1.1\niniconfig==2.0.0\nisort==5.12.0\njaraco.classes==3.3.0\njeepney==0.8.0\nkeyring==24.3.0\nmarkdown-it-py==3.0.0\nmdurl==0.1.2\nmore-itertools==10.1.0\nmypy-extensions==1.0.0\nnatsort==8.4.0\nnh3==0.2.14\npackaging==23.2\npathspec==0.11.2\npkginfo==1.9.6\nplatformdirs==4.0.0\npluggy==1.3.0\npprintpp==0.4.0\npycountry==22.3.5\npycountry-convert==0.7.2\npycparser==2.21\npyflakes==3.1.0\nPygments==2.17.2\npyproject_hooks==1.0.0\npytest==7.4.3\npytest-cov==4.1.0\npytest-mock==3.12.0\npytest-network==0.0.1\npython-dateutil==2.8.2\nPyYAML==6.0.1\nreadme-renderer==42.0\nrepoze.lru==0.7\nrequests==2.31.0\nrequests-toolbelt==1.0.0\nrfc3986==2.0.0\nrich==13.7.0\nSecretStorage==3.3.3\nsix==1.16.0\ntomli==2.0.1\ntwine==4.0.2\ntyping_extensions==4.8.0\nurllib3==2.1.0\nzipp==3.17.0\n## clean up ####################################################################\n## begin #######################################################################\n## lint ########################################################################\n## formatting ##################################################################\nAll done! \u2728 \ud83c\udf70 \u2728\n110 files would be left unchanged.\n## tests/coverage ##############################################################\n============================= test session starts ==============================\nplatform linux -- Python 3.8.18, pytest-7.4.3, pluggy-1.3.0\nrootdir: /home/runner/work/octodns/octodns\nconfigfile: pyproject.toml\nplugins: cov-4.1.0, mock-3.12.0, network-0.0.1\ncollected 294 items\n\ntests/test_octodns_equality.py ..                                        [  0%]\ntests/test_octodns_idna.py .........                                     [  3%]\ntests/test_octodns_manager.py ...........................F.............. [ 18%]\n                                                                         [ 18%]\ntests/test_octodns_plan.py ..........                                    [ 21%]\ntests/test_octodns_processor_acme.py .                                   [ 21%]\ntests/test_octodns_processor_arpa.py .........                           [ 24%]\ntests/test_octodns_processor_filter.py ................                  [ 30%]\ntests/test_octodns_processor_meta.py ......                              [ 32%]\ntests/test_octodns_processor_ownership.py ...                            [ 33%]\ntests/test_octodns_processor_restrict.py .                               [ 33%]\ntests/test_octodns_processor_spf.py .......                              [ 36%]\ntests/test_octodns_provider_base.py ................................     [ 46%]\ntests/test_octodns_provider_yaml.py ...................                  [ 53%]\ntests/test_octodns_record.py .........................                   [ 61%]\ntests/test_octodns_record_a.py ..                                        [ 62%]\ntests/test_octodns_record_aaaa.py ...                                    [ 63%]\ntests/test_octodns_record_alias.py ...                                   [ 64%]\ntests/test_octodns_record_caa.py ....                                    [ 65%]\ntests/test_octodns_record_change.py ..                                   [ 66%]\ntests/test_octodns_record_chunked.py .                                   [ 67%]\ntests/test_octodns_record_cname.py ...                                   [ 68%]\ntests/test_octodns_record_dname.py ...                                   [ 69%]\ntests/test_octodns_record_ds.py .                                        [ 69%]\ntests/test_octodns_record_dynamic.py ................                    [ 74%]\ntests/test_octodns_record_geo.py .......                                 [ 77%]\ntests/test_octodns_record_ip.py .                                        [ 77%]\ntests/test_octodns_record_loc.py ....                                    [ 78%]\ntests/test_octodns_record_mx.py ....                                     [ 80%]\ntests/test_octodns_record_naptr.py ...                                   [ 81%]\ntests/test_octodns_record_ns.py ...                                      [ 82%]\ntests/test_octodns_record_ptr.py ...                                     [ 83%]\ntests/test_octodns_record_spf.py ..                                      [ 84%]\ntests/test_octodns_record_srv.py ....                                    [ 85%]\ntests/test_octodns_record_sshfp.py ....                                  [ 86%]\ntests/test_octodns_record_target.py .                                    [ 87%]\ntests/test_octodns_record_tlsa.py ...                                    [ 88%]\ntests/test_octodns_record_txt.py ....                                    [ 89%]\ntests/test_octodns_record_urlfwd.py ..                                   [ 90%]\ntests/test_octodns_source_envvar.py ..                                   [ 90%]\ntests/test_octodns_source_tinydns.py .....                               [ 92%]\ntests/test_octodns_yaml.py ..                                            [ 93%]\ntests/test_octodns_zone.py ....................                          [100%]\n\n=================================== FAILURES ===================================\n________________________ TestManager.test_missing_zone _________________________\n\nself = <test_octodns_manager.TestManager testMethod=test_missing_zone>\n\n    def test_missing_zone(self):\n        with self.assertRaises(ManagerException) as ctx:\n            Manager(get_config_filename('dynamic-config.yaml')).sync(\n                ['missing.zones.']\n            )\n>       self.assertTrue('Requested zone:' in str(ctx.exception))\nE       AssertionError: False is not true\n\ntests/test_octodns_manager.py:87: AssertionError\n\n---------- coverage: platform linux, python 3.8.18-final-0 -----------\nName                             Stmts   Miss Branch BrPart  Cover\n------------------------------------------------------------------\noctodns/__init__.py                  1      0      0      0   100%\noctodns/context.py                   4      0      0      0   100%\noctodns/deprecation.py               3      0      0      0   100%\noctodns/equality.py                 15      0      0      0   100%\noctodns/idna.py                     53      0     13      0   100%\noctodns/manager.py                 509      0    212      0   100%\noctodns/processor/__init__.py        0      0      0      0   100%\noctodns/processor/acme.py           22      0      8      0   100%\noctodns/processor/arpa.py           40      0     20      0   100%\noctodns/processor/base.py           13      0      0      0   100%\noctodns/processor/filter.py        134      0     46      0   100%\noctodns/processor/meta.py           48      0     12      0   100%\noctodns/processor/ownership.py      45      0     20      0   100%\noctodns/processor/restrict.py       21      0     10      0   100%\noctodns/processor/spf.py            59      0     26      0   100%\noctodns/provider/__init__.py         4      0      0      0   100%\noctodns/provider/base.py           147      0     72      0   100%\noctodns/provider/plan.py           203      0     65      0   100%\noctodns/provider/yaml.py           177      0     76      0   100%\noctodns/record/__init__.py          73      0      0      0   100%\noctodns/record/a.py                 13      0      0      0   100%\noctodns/record/aaaa.py              13      0      0      0   100%\noctodns/record/alias.py             15      0      2      0   100%\noctodns/record/base.py             268      0     72      0   100%\noctodns/record/caa.py               71      0     12      0   100%\noctodns/record/change.py            28      0      0      0   100%\noctodns/record/chunked.py           49      0     16      0   100%\noctodns/record/cname.py             16      0      2      0   100%\noctodns/record/dname.py              9      0      0      0   100%\noctodns/record/ds.py               121      0     26      0   100%\noctodns/record/dynamic.py          270      0    118      0   100%\noctodns/record/exception.py         17      0      2      0   100%\noctodns/record/geo.py              117      0     36      0   100%\noctodns/record/geo_data.py           1      0      0      0   100%\noctodns/record/ip.py                33      0     14      0   100%\noctodns/record/loc.py              184      0     24      0   100%\noctodns/record/mx.py                88      0     14      0   100%\noctodns/record/naptr.py            109      0     16      0   100%\noctodns/record/ns.py                 8      0      0      0   100%\noctodns/record/ptr.py               11      0      0      0   100%\noctodns/record/rr.py                12      0      0      0   100%\noctodns/record/spf.py               10      0      0      0   100%\noctodns/record/srv.py              117      0     20      0   100%\noctodns/record/sshfp.py             86      0     16      0   100%\noctodns/record/subnet.py            13      0      0      0   100%\noctodns/record/target.py            57      0     22      0   100%\noctodns/record/tlsa.py              97      0     20      0   100%\noctodns/record/txt.py                8      0      0      0   100%\noctodns/record/urlfwd.py            85      0     22      0   100%\noctodns/source/__init__.py           0      0      0      0   100%\noctodns/source/base.py              22      0      6      0   100%\noctodns/source/envvar.py            36      0      2      0   100%\noctodns/source/tinydns.py          239      0    128      0   100%\noctodns/yaml.py                     48      0      8      0   100%\noctodns/zone.py                    168      0     93      0   100%\n------------------------------------------------------------------\nTOTAL                             4010      0   1271      0   100%\nCoverage HTML written to dir htmlcov\nCoverage XML written to file coverage.xml\n\nRequired test coverage of 100% reached. Total coverage: 100.00%\n=========================== short test summary info ============================\nFAILED tests/test_octodns_manager.py::TestManager::test_missing_zone - AssertionError: False is not true\n======================== 1 failed, 293 passed in 6.76s =========================\n##[error]Process completed with exit code 1.\n"}, {"step_name": "ci (3.9)/5_CI Build.txt", "log": "##[group]Run ./script/cibuild\n\u001b[36;1m./script/cibuild\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n  pythonLocation: /opt/hostedtoolcache/Python/3.9.18/x64\n  PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.9.18/x64/lib/pkgconfig\n  Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.9.18/x64\n  Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.9.18/x64\n  Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.9.18/x64\n  LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.18/x64/lib\n##[endgroup]\n## bootstrap ###################################################################\nRequirement already satisfied: pip>=10.0.1 in ./env/lib/python3.9/site-packages (23.0.1)\nCollecting pip>=10.0.1\n  Downloading pip-23.3.1-py3-none-any.whl (2.1 MB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 2.1/2.1 MB 25.3 MB/s eta 0:00:00\nInstalling collected packages: pip\n  Attempting uninstall: pip\n    Found existing installation: pip 23.0.1\n    Uninstalling pip-23.0.1:\n      Successfully uninstalled pip-23.0.1\nSuccessfully installed pip-23.3.1\nCollecting PyYAML==6.0.1 (from -r requirements.txt (line 2))\n  Using cached PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)\nCollecting dnspython==2.4.2 (from -r requirements.txt (line 3))\n  Using cached dnspython-2.4.2-py3-none-any.whl.metadata (4.9 kB)\nCollecting fqdn==1.5.1 (from -r requirements.txt (line 4))\n  Using cached fqdn-1.5.1-py3-none-any.whl (9.1 kB)\nCollecting idna==3.4 (from -r requirements.txt (line 5))\n  Using cached idna-3.4-py3-none-any.whl (61 kB)\nCollecting natsort==8.4.0 (from -r requirements.txt (line 6))\n  Using cached natsort-8.4.0-py3-none-any.whl.metadata (21 kB)\nCollecting python-dateutil==2.8.2 (from -r requirements.txt (line 7))\n  Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)\nCollecting six==1.16.0 (from -r requirements.txt (line 8))\n  Using cached six-1.16.0-py2.py3-none-any.whl (11 kB)\nUsing cached PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (738 kB)\nUsing cached dnspython-2.4.2-py3-none-any.whl (300 kB)\nUsing cached natsort-8.4.0-py3-none-any.whl (38 kB)\nInstalling collected packages: six, PyYAML, natsort, idna, fqdn, dnspython, python-dateutil\nSuccessfully installed PyYAML-6.0.1 dnspython-2.4.2 fqdn-1.5.1 idna-3.4 natsort-8.4.0 python-dateutil-2.8.2 six-1.16.0\nCollecting Pygments==2.17.2 (from -r requirements-dev.txt (line 2))\n  Downloading pygments-2.17.2-py3-none-any.whl.metadata (2.6 kB)\nCollecting black==23.11.0 (from -r requirements-dev.txt (line 3))\n  Downloading black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (66 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 66.9/66.9 kB 3.1 MB/s eta 0:00:00\nCollecting build==1.0.3 (from -r requirements-dev.txt (line 4))\n  Downloading build-1.0.3-py3-none-any.whl.metadata (4.2 kB)\nCollecting certifi==2023.11.17 (from -r requirements-dev.txt (line 5))\n  Downloading certifi-2023.11.17-py3-none-any.whl.metadata (2.2 kB)\nCollecting cffi==1.16.0 (from -r requirements-dev.txt (line 6))\n  Downloading cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)\nCollecting charset-normalizer==3.3.2 (from -r requirements-dev.txt (line 7))\n  Downloading charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)\nCollecting click==8.1.7 (from -r requirements-dev.txt (line 8))\n  Downloading click-8.1.7-py3-none-any.whl.metadata (3.0 kB)\nCollecting cmarkgfm==2022.10.27 (from -r requirements-dev.txt (line 9))\n  Downloading cmarkgfm-2022.10.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 435.0/435.0 kB 6.5 MB/s eta 0:00:00\nCollecting coverage==7.3.2 (from -r requirements-dev.txt (line 10))\n  Downloading coverage-7.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB)\nCollecting docutils==0.20.1 (from -r requirements-dev.txt (line 11))\n  Downloading docutils-0.20.1-py3-none-any.whl.metadata (2.8 kB)\nCollecting exceptiongroup==1.2.0 (from -r requirements-dev.txt (line 12))\n  Downloading exceptiongroup-1.2.0-py3-none-any.whl.metadata (6.6 kB)\nCollecting importlib-metadata==6.8.0 (from -r requirements-dev.txt (line 13))\n  Downloading importlib_metadata-6.8.0-py3-none-any.whl.metadata (5.1 kB)\nCollecting iniconfig==2.0.0 (from -r requirements-dev.txt (line 14))\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting isort==5.12.0 (from -r requirements-dev.txt (line 15))\n  Downloading isort-5.12.0-py3-none-any.whl (91 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 91.2/91.2 kB 7.8 MB/s eta 0:00:00\nCollecting jaraco.classes==3.3.0 (from -r requirements-dev.txt (line 16))\n  Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)\nCollecting keyring==24.3.0 (from -r requirements-dev.txt (line 17))\n  Downloading keyring-24.3.0-py3-none-any.whl.metadata (20 kB)\nCollecting markdown-it-py==3.0.0 (from -r requirements-dev.txt (line 18))\n  Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB)\nCollecting mdurl==0.1.2 (from -r requirements-dev.txt (line 19))\n  Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)\nCollecting more-itertools==10.1.0 (from -r requirements-dev.txt (line 20))\n  Downloading more_itertools-10.1.0-py3-none-any.whl.metadata (33 kB)\nCollecting mypy-extensions==1.0.0 (from -r requirements-dev.txt (line 21))\n  Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB)\nCollecting nh3==0.2.14 (from -r requirements-dev.txt (line 22))\n  Downloading nh3-0.2.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.6 kB)\nCollecting packaging==23.2 (from -r requirements-dev.txt (line 23))\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pathspec==0.11.2 (from -r requirements-dev.txt (line 24))\n  Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)\nCollecting pkginfo==1.9.6 (from -r requirements-dev.txt (line 25))\n  Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)\nCollecting platformdirs==4.0.0 (from -r requirements-dev.txt (line 26))\n  Downloading platformdirs-4.0.0-py3-none-any.whl.metadata (11 kB)\nCollecting pluggy==1.3.0 (from -r requirements-dev.txt (line 27))\n  Downloading pluggy-1.3.0-py3-none-any.whl.metadata (4.3 kB)\nCollecting pprintpp==0.4.0 (from -r requirements-dev.txt (line 28))\n  Downloading pprintpp-0.4.0-py2.py3-none-any.whl (16 kB)\nCollecting pycountry-convert==0.7.2 (from -r requirements-dev.txt (line 29))\n  Downloading pycountry_convert-0.7.2-py3-none-any.whl (13 kB)\nCollecting pycountry==22.3.5 (from -r requirements-dev.txt (line 30))\n  Downloading pycountry-22.3.5.tar.gz (10.1 MB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 10.1/10.1 MB 20.6 MB/s eta 0:00:00\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting pycparser==2.21 (from -r requirements-dev.txt (line 31))\n  Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 118.7/118.7 kB 30.2 MB/s eta 0:00:00\nCollecting pyflakes==3.1.0 (from -r requirements-dev.txt (line 32))\n  Downloading pyflakes-3.1.0-py2.py3-none-any.whl.metadata (3.5 kB)\nCollecting pyproject_hooks==1.0.0 (from -r requirements-dev.txt (line 33))\n  Downloading pyproject_hooks-1.0.0-py3-none-any.whl (9.3 kB)\nCollecting pytest-cov==4.1.0 (from -r requirements-dev.txt (line 34))\n  Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB)\nCollecting pytest-mock==3.12.0 (from -r requirements-dev.txt (line 35))\n  Downloading pytest_mock-3.12.0-py3-none-any.whl.metadata (3.8 kB)\nCollecting pytest-network==0.0.1 (from -r requirements-dev.txt (line 36))\n  Downloading pytest_network-0.0.1.tar.gz (2.8 kB)\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting pytest==7.4.3 (from -r requirements-dev.txt (line 37))\n  Downloading pytest-7.4.3-py3-none-any.whl.metadata (7.9 kB)\nCollecting readme-renderer==42.0 (from -r requirements-dev.txt (line 38))\n  Downloading readme_renderer-42.0-py3-none-any.whl.metadata (2.8 kB)\nCollecting repoze.lru==0.7 (from -r requirements-dev.txt (line 39))\n  Downloading repoze.lru-0.7-py3-none-any.whl (10 kB)\nCollecting requests-toolbelt==1.0.0 (from -r requirements-dev.txt (line 40))\n  Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 54.5/54.5 kB 18.4 MB/s eta 0:00:00\nCollecting requests==2.31.0 (from -r requirements-dev.txt (line 41))\n  Downloading requests-2.31.0-py3-none-any.whl.metadata (4.6 kB)\nCollecting rfc3986==2.0.0 (from -r requirements-dev.txt (line 42))\n  Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\nCollecting rich==13.7.0 (from -r requirements-dev.txt (line 43))\n  Downloading rich-13.7.0-py3-none-any.whl.metadata (18 kB)\nCollecting tomli==2.0.1 (from -r requirements-dev.txt (line 44))\n  Downloading tomli-2.0.1-py3-none-any.whl (12 kB)\nCollecting twine==4.0.2 (from -r requirements-dev.txt (line 45))\n  Downloading twine-4.0.2-py3-none-any.whl (36 kB)\nCollecting typing_extensions==4.8.0 (from -r requirements-dev.txt (line 46))\n  Downloading typing_extensions-4.8.0-py3-none-any.whl.metadata (3.0 kB)\nCollecting urllib3==2.1.0 (from -r requirements-dev.txt (line 47))\n  Downloading urllib3-2.1.0-py3-none-any.whl.metadata (6.4 kB)\nCollecting zipp==3.17.0 (from -r requirements-dev.txt (line 48))\n  Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)\nCollecting SecretStorage>=3.2 (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2 (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 48.4/48.4 kB 12.8 MB/s eta 0:00:00\nCollecting wheel>=0.30.0 (from pycountry-convert==0.7.2->-r requirements-dev.txt (line 29))\n  Using cached wheel-0.42.0-py3-none-any.whl.metadata (2.2 kB)\nRequirement already satisfied: setuptools in ./env/lib/python3.9/site-packages (from pycountry==22.3.5->-r requirements-dev.txt (line 30)) (58.1.0)\nRequirement already satisfied: idna<4,>=2.5 in ./env/lib/python3.9/site-packages (from requests==2.31.0->-r requirements-dev.txt (line 41)) (3.4)\nCollecting cryptography>=2.0 (from SecretStorage>=3.2->keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)\nDownloading pygments-2.17.2-py3-none-any.whl (1.2 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.2/1.2 MB 43.2 MB/s eta 0:00:00\nDownloading black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.7/1.7 MB 30.4 MB/s eta 0:00:00\nDownloading build-1.0.3-py3-none-any.whl (18 kB)\nDownloading certifi-2023.11.17-py3-none-any.whl (162 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 162.5/162.5 kB 31.9 MB/s eta 0:00:00\nDownloading cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (443 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 443.4/443.4 kB 28.8 MB/s eta 0:00:00\nDownloading charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 142.3/142.3 kB 35.7 MB/s eta 0:00:00\nDownloading click-8.1.7-py3-none-any.whl (97 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 97.9/97.9 kB 27.5 MB/s eta 0:00:00\nDownloading coverage-7.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (227 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 227.1/227.1 kB 41.7 MB/s eta 0:00:00\nDownloading docutils-0.20.1-py3-none-any.whl (572 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 572.7/572.7 kB 31.3 MB/s eta 0:00:00\nDownloading exceptiongroup-1.2.0-py3-none-any.whl (16 kB)\nDownloading importlib_metadata-6.8.0-py3-none-any.whl (22 kB)\nDownloading jaraco.classes-3.3.0-py3-none-any.whl (5.9 kB)\nDownloading keyring-24.3.0-py3-none-any.whl (38 kB)\nDownloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 87.5/87.5 kB 25.9 MB/s eta 0:00:00\nDownloading more_itertools-10.1.0-py3-none-any.whl (55 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 55.8/55.8 kB 16.3 MB/s eta 0:00:00\nDownloading nh3-0.2.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.7/1.7 MB 30.1 MB/s eta 0:00:00\nDownloading packaging-23.2-py3-none-any.whl (53 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 53.0/53.0 kB 16.4 MB/s eta 0:00:00\nDownloading pathspec-0.11.2-py3-none-any.whl (29 kB)\nDownloading platformdirs-4.0.0-py3-none-any.whl (17 kB)\nDownloading pluggy-1.3.0-py3-none-any.whl (18 kB)\nDownloading pyflakes-3.1.0-py2.py3-none-any.whl (62 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 62.6/62.6 kB 19.4 MB/s eta 0:00:00\nDownloading pytest_cov-4.1.0-py3-none-any.whl (21 kB)\nDownloading pytest_mock-3.12.0-py3-none-any.whl (9.8 kB)\nDownloading pytest-7.4.3-py3-none-any.whl (325 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 325.1/325.1 kB 32.2 MB/s eta 0:00:00\nDownloading readme_renderer-42.0-py3-none-any.whl (13 kB)\nDownloading requests-2.31.0-py3-none-any.whl (62 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 62.6/62.6 kB 19.5 MB/s eta 0:00:00\nDownloading rich-13.7.0-py3-none-any.whl (240 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 240.6/240.6 kB 35.7 MB/s eta 0:00:00\nDownloading typing_extensions-4.8.0-py3-none-any.whl (31 kB)\nDownloading urllib3-2.1.0-py3-none-any.whl (104 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 104.6/104.6 kB 31.7 MB/s eta 0:00:00\nDownloading zipp-3.17.0-py3-none-any.whl (7.4 kB)\nUsing cached wheel-0.42.0-py3-none-any.whl (65 kB)\nDownloading cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl (4.4 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 4.4/4.4 MB 32.4 MB/s eta 0:00:00\nBuilding wheels for collected packages: pycountry, pytest-network\n  Building wheel for pycountry (pyproject.toml): started\n  Building wheel for pycountry (pyproject.toml): finished with status 'done'\n  Created wheel for pycountry: filename=pycountry-22.3.5-py2.py3-none-any.whl size=10681832 sha256=6651b7cbbeb5454f6442094790535901bb003fe81e132ba2dff3caf1a884cb1e\n  Stored in directory: /home/runner/.cache/pip/wheels/47/15/92/e6dc85fcb0686c82e1edbcfdf80cfe4808c058813fed0baa8f\n  Building wheel for pytest-network (pyproject.toml): started\n  Building wheel for pytest-network (pyproject.toml): finished with status 'done'\n  Created wheel for pytest-network: filename=pytest_network-0.0.1-py3-none-any.whl size=2960 sha256=a88e064065e65cf19fcfb8c1f73c85d7d00b561fcdda670621edf8c88deeee8a\n  Stored in directory: /home/runner/.cache/pip/wheels/8c/ef/32/14205df1989a5ce6ef61eff98537d4236a3c6f50c2b1a6d89a\nSuccessfully built pycountry pytest-network\nInstalling collected packages: repoze.lru, pprintpp, nh3, zipp, wheel, urllib3, typing_extensions, tomli, rfc3986, Pygments, pyflakes, pycparser, pycountry, pluggy, platformdirs, pkginfo, pathspec, packaging, mypy-extensions, more-itertools, mdurl, jeepney, isort, iniconfig, exceptiongroup, docutils, coverage, click, charset-normalizer, certifi, requests, readme-renderer, pytest, pyproject_hooks, markdown-it-py, jaraco.classes, importlib-metadata, cffi, black, rich, requests-toolbelt, pytest-network, pytest-mock, pytest-cov, cryptography, cmarkgfm, build, SecretStorage, pycountry-convert, keyring, twine\nSuccessfully installed Pygments-2.17.2 SecretStorage-3.3.3 black-23.11.0 build-1.0.3 certifi-2023.11.17 cffi-1.16.0 charset-normalizer-3.3.2 click-8.1.7 cmarkgfm-2022.10.27 coverage-7.3.2 cryptography-41.0.7 docutils-0.20.1 exceptiongroup-1.2.0 importlib-metadata-6.8.0 iniconfig-2.0.0 isort-5.12.0 jaraco.classes-3.3.0 jeepney-0.8.0 keyring-24.3.0 markdown-it-py-3.0.0 mdurl-0.1.2 more-itertools-10.1.0 mypy-extensions-1.0.0 nh3-0.2.14 packaging-23.2 pathspec-0.11.2 pkginfo-1.9.6 platformdirs-4.0.0 pluggy-1.3.0 pprintpp-0.4.0 pycountry-22.3.5 pycountry-convert-0.7.2 pycparser-2.21 pyflakes-3.1.0 pyproject_hooks-1.0.0 pytest-7.4.3 pytest-cov-4.1.0 pytest-mock-3.12.0 pytest-network-0.0.1 readme-renderer-42.0 repoze.lru-0.7 requests-2.31.0 requests-toolbelt-1.0.0 rfc3986-2.0.0 rich-13.7.0 tomli-2.0.1 twine-4.0.2 typing_extensions-4.8.0 urllib3-2.1.0 wheel-0.42.0 zipp-3.17.0\n\nSetting blame.ignoreRevsFile to .git-blame-ingore-revs\n\nInstalling pre-commit hook\n\nRun source env/bin/activate to get your shell in to the virtualenv\nSee README.md for more information.\n\n## environment & versions ######################################################\nPython 3.9.18\npip 23.3.1 from /home/runner/work/octodns/octodns/env/lib/python3.9/site-packages/pip (python 3.9)\n## modules: \nblack==23.11.0\nbuild==1.0.3\ncertifi==2023.11.17\ncffi==1.16.0\ncharset-normalizer==3.3.2\nclick==8.1.7\ncmarkgfm==2022.10.27\ncoverage==7.3.2\ncryptography==41.0.7\ndnspython==2.4.2\ndocutils==0.20.1\nexceptiongroup==1.2.0\nfqdn==1.5.1\nidna==3.4\nimportlib-metadata==6.8.0\niniconfig==2.0.0\nisort==5.12.0\njaraco.classes==3.3.0\njeepney==0.8.0\nkeyring==24.3.0\nmarkdown-it-py==3.0.0\nmdurl==0.1.2\nmore-itertools==10.1.0\nmypy-extensions==1.0.0\nnatsort==8.4.0\nnh3==0.2.14\npackaging==23.2\npathspec==0.11.2\npkginfo==1.9.6\nplatformdirs==4.0.0\npluggy==1.3.0\npprintpp==0.4.0\npycountry==22.3.5\npycountry-convert==0.7.2\npycparser==2.21\npyflakes==3.1.0\nPygments==2.17.2\npyproject_hooks==1.0.0\npytest==7.4.3\npytest-cov==4.1.0\npytest-mock==3.12.0\npytest-network==0.0.1\npython-dateutil==2.8.2\nPyYAML==6.0.1\nreadme-renderer==42.0\nrepoze.lru==0.7\nrequests==2.31.0\nrequests-toolbelt==1.0.0\nrfc3986==2.0.0\nrich==13.7.0\nSecretStorage==3.3.3\nsix==1.16.0\ntomli==2.0.1\ntwine==4.0.2\ntyping_extensions==4.8.0\nurllib3==2.1.0\nzipp==3.17.0\n## clean up ####################################################################\n## begin #######################################################################\n## lint ########################################################################\n## formatting ##################################################################\nAll done! \u2728 \ud83c\udf70 \u2728\n110 files would be left unchanged.\n## tests/coverage ##############################################################\n============================= test session starts ==============================\nplatform linux -- Python 3.9.18, pytest-7.4.3, pluggy-1.3.0\nrootdir: /home/runner/work/octodns/octodns\nconfigfile: pyproject.toml\nplugins: cov-4.1.0, mock-3.12.0, network-0.0.1\ncollected 294 items\n\ntests/test_octodns_equality.py ..                                        [  0%]\ntests/test_octodns_idna.py .........                                     [  3%]\ntests/test_octodns_manager.py ...........................F.............. [ 18%]\n                                                                         [ 18%]\ntests/test_octodns_plan.py ..........                                    [ 21%]\ntests/test_octodns_processor_acme.py .                                   [ 21%]\ntests/test_octodns_processor_arpa.py .........                           [ 24%]\ntests/test_octodns_processor_filter.py ................                  [ 30%]\ntests/test_octodns_processor_meta.py ......                              [ 32%]\ntests/test_octodns_processor_ownership.py ...                            [ 33%]\ntests/test_octodns_processor_restrict.py .                               [ 33%]\ntests/test_octodns_processor_spf.py .......                              [ 36%]\ntests/test_octodns_provider_base.py ................................     [ 46%]\ntests/test_octodns_provider_yaml.py ...................                  [ 53%]\ntests/test_octodns_record.py .........................                   [ 61%]\ntests/test_octodns_record_a.py ..                                        [ 62%]\ntests/test_octodns_record_aaaa.py ...                                    [ 63%]\ntests/test_octodns_record_alias.py ...                                   [ 64%]\ntests/test_octodns_record_caa.py ....                                    [ 65%]\ntests/test_octodns_record_change.py ..                                   [ 66%]\ntests/test_octodns_record_chunked.py .                                   [ 67%]\ntests/test_octodns_record_cname.py ...                                   [ 68%]\ntests/test_octodns_record_dname.py ...                                   [ 69%]\ntests/test_octodns_record_ds.py .                                        [ 69%]\ntests/test_octodns_record_dynamic.py ................                    [ 74%]\ntests/test_octodns_record_geo.py .......                                 [ 77%]\ntests/test_octodns_record_ip.py .                                        [ 77%]\ntests/test_octodns_record_loc.py ....                                    [ 78%]\ntests/test_octodns_record_mx.py ....                                     [ 80%]\ntests/test_octodns_record_naptr.py ...                                   [ 81%]\ntests/test_octodns_record_ns.py ...                                      [ 82%]\ntests/test_octodns_record_ptr.py ...                                     [ 83%]\ntests/test_octodns_record_spf.py ..                                      [ 84%]\ntests/test_octodns_record_srv.py ....                                    [ 85%]\ntests/test_octodns_record_sshfp.py ....                                  [ 86%]\ntests/test_octodns_record_target.py .                                    [ 87%]\ntests/test_octodns_record_tlsa.py ...                                    [ 88%]\ntests/test_octodns_record_txt.py ....                                    [ 89%]\ntests/test_octodns_record_urlfwd.py ..                                   [ 90%]\ntests/test_octodns_source_envvar.py ..                                   [ 90%]\ntests/test_octodns_source_tinydns.py .....                               [ 92%]\ntests/test_octodns_yaml.py ..                                            [ 93%]\ntests/test_octodns_zone.py ....................                          [100%]\n\n=================================== FAILURES ===================================\n________________________ TestManager.test_missing_zone _________________________\n\nself = <test_octodns_manager.TestManager testMethod=test_missing_zone>\n\n    def test_missing_zone(self):\n        with self.assertRaises(ManagerException) as ctx:\n            Manager(get_config_filename('dynamic-config.yaml')).sync(\n                ['missing.zones.']\n            )\n>       self.assertTrue('Requested zone:' in str(ctx.exception))\nE       AssertionError: False is not true\n\ntests/test_octodns_manager.py:87: AssertionError\n\n---------- coverage: platform linux, python 3.9.18-final-0 -----------\nName                             Stmts   Miss Branch BrPart  Cover\n------------------------------------------------------------------\noctodns/__init__.py                  1      0      0      0   100%\noctodns/context.py                   4      0      0      0   100%\noctodns/deprecation.py               3      0      0      0   100%\noctodns/equality.py                 15      0      0      0   100%\noctodns/idna.py                     53      0     13      0   100%\noctodns/manager.py                 509      0    212      0   100%\noctodns/processor/__init__.py        0      0      0      0   100%\noctodns/processor/acme.py           22      0      8      0   100%\noctodns/processor/arpa.py           40      0     20      0   100%\noctodns/processor/base.py           13      0      0      0   100%\noctodns/processor/filter.py        134      0     46      0   100%\noctodns/processor/meta.py           48      0     12      0   100%\noctodns/processor/ownership.py      45      0     20      0   100%\noctodns/processor/restrict.py       21      0     10      0   100%\noctodns/processor/spf.py            59      0     26      0   100%\noctodns/provider/__init__.py         4      0      0      0   100%\noctodns/provider/base.py           147      0     72      0   100%\noctodns/provider/plan.py           203      0     65      0   100%\noctodns/provider/yaml.py           177      0     76      0   100%\noctodns/record/__init__.py          73      0      0      0   100%\noctodns/record/a.py                 13      0      0      0   100%\noctodns/record/aaaa.py              13      0      0      0   100%\noctodns/record/alias.py             15      0      2      0   100%\noctodns/record/base.py             268      0     72      0   100%\noctodns/record/caa.py               71      0     12      0   100%\noctodns/record/change.py            28      0      0      0   100%\noctodns/record/chunked.py           49      0     16      0   100%\noctodns/record/cname.py             16      0      2      0   100%\noctodns/record/dname.py              9      0      0      0   100%\noctodns/record/ds.py               121      0     26      0   100%\noctodns/record/dynamic.py          270      0    118      0   100%\noctodns/record/exception.py         17      0      2      0   100%\noctodns/record/geo.py              117      0     36      0   100%\noctodns/record/geo_data.py           1      0      0      0   100%\noctodns/record/ip.py                33      0     14      0   100%\noctodns/record/loc.py              184      0     24      0   100%\noctodns/record/mx.py                88      0     14      0   100%\noctodns/record/naptr.py            109      0     16      0   100%\noctodns/record/ns.py                 8      0      0      0   100%\noctodns/record/ptr.py               11      0      0      0   100%\noctodns/record/rr.py                12      0      0      0   100%\noctodns/record/spf.py               10      0      0      0   100%\noctodns/record/srv.py              117      0     20      0   100%\noctodns/record/sshfp.py             86      0     16      0   100%\noctodns/record/subnet.py            13      0      0      0   100%\noctodns/record/target.py            57      0     22      0   100%\noctodns/record/tlsa.py              97      0     20      0   100%\noctodns/record/txt.py                8      0      0      0   100%\noctodns/record/urlfwd.py            85      0     22      0   100%\noctodns/source/__init__.py           0      0      0      0   100%\noctodns/source/base.py              22      0      6      0   100%\noctodns/source/envvar.py            36      0      2      0   100%\noctodns/source/tinydns.py          239      0    128      0   100%\noctodns/yaml.py                     48      0      8      0   100%\noctodns/zone.py                    168      0     93      0   100%\n------------------------------------------------------------------\nTOTAL                             4010      0   1271      0   100%\nCoverage HTML written to dir htmlcov\nCoverage XML written to file coverage.xml\n\nRequired test coverage of 100% reached. Total coverage: 100.00%\n=========================== short test summary info ============================\nFAILED tests/test_octodns_manager.py::TestManager::test_missing_zone - AssertionError: False is not true\n======================== 1 failed, 293 passed in 6.55s =========================\n##[error]Process completed with exit code 1.\n"}, {"step_name": "ci (3.10)/5_CI Build.txt", "log": "##[group]Run ./script/cibuild\n\u001b[36;1m./script/cibuild\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n  pythonLocation: /opt/hostedtoolcache/Python/3.10.13/x64\n  PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.10.13/x64/lib/pkgconfig\n  Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.10.13/x64\n  Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.10.13/x64\n  Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.10.13/x64\n  LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.10.13/x64/lib\n##[endgroup]\n## bootstrap ###################################################################\nRequirement already satisfied: pip>=10.0.1 in ./env/lib/python3.10/site-packages (23.0.1)\nCollecting pip>=10.0.1\n  Downloading pip-23.3.1-py3-none-any.whl (2.1 MB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 2.1/2.1 MB 35.5 MB/s eta 0:00:00\nInstalling collected packages: pip\n  Attempting uninstall: pip\n    Found existing installation: pip 23.0.1\n    Uninstalling pip-23.0.1:\n      Successfully uninstalled pip-23.0.1\nSuccessfully installed pip-23.3.1\nCollecting PyYAML==6.0.1 (from -r requirements.txt (line 2))\n  Using cached PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)\nCollecting dnspython==2.4.2 (from -r requirements.txt (line 3))\n  Using cached dnspython-2.4.2-py3-none-any.whl.metadata (4.9 kB)\nCollecting fqdn==1.5.1 (from -r requirements.txt (line 4))\n  Using cached fqdn-1.5.1-py3-none-any.whl (9.1 kB)\nCollecting idna==3.4 (from -r requirements.txt (line 5))\n  Using cached idna-3.4-py3-none-any.whl (61 kB)\nCollecting natsort==8.4.0 (from -r requirements.txt (line 6))\n  Using cached natsort-8.4.0-py3-none-any.whl.metadata (21 kB)\nCollecting python-dateutil==2.8.2 (from -r requirements.txt (line 7))\n  Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)\nCollecting six==1.16.0 (from -r requirements.txt (line 8))\n  Using cached six-1.16.0-py2.py3-none-any.whl (11 kB)\nUsing cached PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705 kB)\nUsing cached dnspython-2.4.2-py3-none-any.whl (300 kB)\nUsing cached natsort-8.4.0-py3-none-any.whl (38 kB)\nInstalling collected packages: six, PyYAML, natsort, idna, fqdn, dnspython, python-dateutil\nSuccessfully installed PyYAML-6.0.1 dnspython-2.4.2 fqdn-1.5.1 idna-3.4 natsort-8.4.0 python-dateutil-2.8.2 six-1.16.0\nCollecting Pygments==2.17.2 (from -r requirements-dev.txt (line 2))\n  Downloading pygments-2.17.2-py3-none-any.whl.metadata (2.6 kB)\nCollecting black==23.11.0 (from -r requirements-dev.txt (line 3))\n  Downloading black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (66 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 66.9/66.9 kB 5.3 MB/s eta 0:00:00\nCollecting build==1.0.3 (from -r requirements-dev.txt (line 4))\n  Downloading build-1.0.3-py3-none-any.whl.metadata (4.2 kB)\nCollecting certifi==2023.11.17 (from -r requirements-dev.txt (line 5))\n  Downloading certifi-2023.11.17-py3-none-any.whl.metadata (2.2 kB)\nCollecting cffi==1.16.0 (from -r requirements-dev.txt (line 6))\n  Downloading cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)\nCollecting charset-normalizer==3.3.2 (from -r requirements-dev.txt (line 7))\n  Downloading charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)\nCollecting click==8.1.7 (from -r requirements-dev.txt (line 8))\n  Downloading click-8.1.7-py3-none-any.whl.metadata (3.0 kB)\nCollecting cmarkgfm==2022.10.27 (from -r requirements-dev.txt (line 9))\n  Downloading cmarkgfm-2022.10.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 435.0/435.0 kB 38.6 MB/s eta 0:00:00\nCollecting coverage==7.3.2 (from -r requirements-dev.txt (line 10))\n  Downloading coverage-7.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB)\nCollecting docutils==0.20.1 (from -r requirements-dev.txt (line 11))\n  Downloading docutils-0.20.1-py3-none-any.whl.metadata (2.8 kB)\nCollecting exceptiongroup==1.2.0 (from -r requirements-dev.txt (line 12))\n  Downloading exceptiongroup-1.2.0-py3-none-any.whl.metadata (6.6 kB)\nCollecting importlib-metadata==6.8.0 (from -r requirements-dev.txt (line 13))\n  Downloading importlib_metadata-6.8.0-py3-none-any.whl.metadata (5.1 kB)\nCollecting iniconfig==2.0.0 (from -r requirements-dev.txt (line 14))\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting isort==5.12.0 (from -r requirements-dev.txt (line 15))\n  Downloading isort-5.12.0-py3-none-any.whl (91 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 91.2/91.2 kB 30.1 MB/s eta 0:00:00\nCollecting jaraco.classes==3.3.0 (from -r requirements-dev.txt (line 16))\n  Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)\nCollecting keyring==24.3.0 (from -r requirements-dev.txt (line 17))\n  Downloading keyring-24.3.0-py3-none-any.whl.metadata (20 kB)\nCollecting markdown-it-py==3.0.0 (from -r requirements-dev.txt (line 18))\n  Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB)\nCollecting mdurl==0.1.2 (from -r requirements-dev.txt (line 19))\n  Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)\nCollecting more-itertools==10.1.0 (from -r requirements-dev.txt (line 20))\n  Downloading more_itertools-10.1.0-py3-none-any.whl.metadata (33 kB)\nCollecting mypy-extensions==1.0.0 (from -r requirements-dev.txt (line 21))\n  Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB)\nCollecting nh3==0.2.14 (from -r requirements-dev.txt (line 22))\n  Downloading nh3-0.2.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.6 kB)\nCollecting packaging==23.2 (from -r requirements-dev.txt (line 23))\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pathspec==0.11.2 (from -r requirements-dev.txt (line 24))\n  Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)\nCollecting pkginfo==1.9.6 (from -r requirements-dev.txt (line 25))\n  Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)\nCollecting platformdirs==4.0.0 (from -r requirements-dev.txt (line 26))\n  Downloading platformdirs-4.0.0-py3-none-any.whl.metadata (11 kB)\nCollecting pluggy==1.3.0 (from -r requirements-dev.txt (line 27))\n  Downloading pluggy-1.3.0-py3-none-any.whl.metadata (4.3 kB)\nCollecting pprintpp==0.4.0 (from -r requirements-dev.txt (line 28))\n  Downloading pprintpp-0.4.0-py2.py3-none-any.whl (16 kB)\nCollecting pycountry-convert==0.7.2 (from -r requirements-dev.txt (line 29))\n  Downloading pycountry_convert-0.7.2-py3-none-any.whl (13 kB)\nCollecting pycountry==22.3.5 (from -r requirements-dev.txt (line 30))\n  Downloading pycountry-22.3.5.tar.gz (10.1 MB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 10.1/10.1 MB 123.2 MB/s eta 0:00:00\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting pycparser==2.21 (from -r requirements-dev.txt (line 31))\n  Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 118.7/118.7 kB 36.5 MB/s eta 0:00:00\nCollecting pyflakes==3.1.0 (from -r requirements-dev.txt (line 32))\n  Downloading pyflakes-3.1.0-py2.py3-none-any.whl.metadata (3.5 kB)\nCollecting pyproject_hooks==1.0.0 (from -r requirements-dev.txt (line 33))\n  Downloading pyproject_hooks-1.0.0-py3-none-any.whl (9.3 kB)\nCollecting pytest-cov==4.1.0 (from -r requirements-dev.txt (line 34))\n  Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB)\nCollecting pytest-mock==3.12.0 (from -r requirements-dev.txt (line 35))\n  Downloading pytest_mock-3.12.0-py3-none-any.whl.metadata (3.8 kB)\nCollecting pytest-network==0.0.1 (from -r requirements-dev.txt (line 36))\n  Downloading pytest_network-0.0.1.tar.gz (2.8 kB)\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting pytest==7.4.3 (from -r requirements-dev.txt (line 37))\n  Downloading pytest-7.4.3-py3-none-any.whl.metadata (7.9 kB)\nCollecting readme-renderer==42.0 (from -r requirements-dev.txt (line 38))\n  Downloading readme_renderer-42.0-py3-none-any.whl.metadata (2.8 kB)\nCollecting repoze.lru==0.7 (from -r requirements-dev.txt (line 39))\n  Downloading repoze.lru-0.7-py3-none-any.whl (10 kB)\nCollecting requests-toolbelt==1.0.0 (from -r requirements-dev.txt (line 40))\n  Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 54.5/54.5 kB 18.3 MB/s eta 0:00:00\nCollecting requests==2.31.0 (from -r requirements-dev.txt (line 41))\n  Downloading requests-2.31.0-py3-none-any.whl.metadata (4.6 kB)\nCollecting rfc3986==2.0.0 (from -r requirements-dev.txt (line 42))\n  Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\nCollecting rich==13.7.0 (from -r requirements-dev.txt (line 43))\n  Downloading rich-13.7.0-py3-none-any.whl.metadata (18 kB)\nCollecting tomli==2.0.1 (from -r requirements-dev.txt (line 44))\n  Downloading tomli-2.0.1-py3-none-any.whl (12 kB)\nCollecting twine==4.0.2 (from -r requirements-dev.txt (line 45))\n  Downloading twine-4.0.2-py3-none-any.whl (36 kB)\nCollecting typing_extensions==4.8.0 (from -r requirements-dev.txt (line 46))\n  Downloading typing_extensions-4.8.0-py3-none-any.whl.metadata (3.0 kB)\nCollecting urllib3==2.1.0 (from -r requirements-dev.txt (line 47))\n  Downloading urllib3-2.1.0-py3-none-any.whl.metadata (6.4 kB)\nCollecting zipp==3.17.0 (from -r requirements-dev.txt (line 48))\n  Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)\nCollecting SecretStorage>=3.2 (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2 (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 48.4/48.4 kB 18.2 MB/s eta 0:00:00\nCollecting wheel>=0.30.0 (from pycountry-convert==0.7.2->-r requirements-dev.txt (line 29))\n  Using cached wheel-0.42.0-py3-none-any.whl.metadata (2.2 kB)\nRequirement already satisfied: setuptools in ./env/lib/python3.10/site-packages (from pycountry==22.3.5->-r requirements-dev.txt (line 30)) (65.5.0)\nRequirement already satisfied: idna<4,>=2.5 in ./env/lib/python3.10/site-packages (from requests==2.31.0->-r requirements-dev.txt (line 41)) (3.4)\nCollecting cryptography>=2.0 (from SecretStorage>=3.2->keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)\nDownloading pygments-2.17.2-py3-none-any.whl (1.2 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.2/1.2 MB 96.1 MB/s eta 0:00:00\nDownloading black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.7/1.7 MB 108.0 MB/s eta 0:00:00\nDownloading build-1.0.3-py3-none-any.whl (18 kB)\nDownloading certifi-2023.11.17-py3-none-any.whl (162 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 162.5/162.5 kB 48.0 MB/s eta 0:00:00\nDownloading cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (443 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 443.9/443.9 kB 83.1 MB/s eta 0:00:00\nDownloading charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 142.1/142.1 kB 44.9 MB/s eta 0:00:00\nDownloading click-8.1.7-py3-none-any.whl (97 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 97.9/97.9 kB 34.6 MB/s eta 0:00:00\nDownloading coverage-7.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (227 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 227.5/227.5 kB 61.2 MB/s eta 0:00:00\nDownloading docutils-0.20.1-py3-none-any.whl (572 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 572.7/572.7 kB 88.2 MB/s eta 0:00:00\nDownloading exceptiongroup-1.2.0-py3-none-any.whl (16 kB)\nDownloading importlib_metadata-6.8.0-py3-none-any.whl (22 kB)\nDownloading jaraco.classes-3.3.0-py3-none-any.whl (5.9 kB)\nDownloading keyring-24.3.0-py3-none-any.whl (38 kB)\nDownloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 87.5/87.5 kB 30.3 MB/s eta 0:00:00\nDownloading more_itertools-10.1.0-py3-none-any.whl (55 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 55.8/55.8 kB 19.4 MB/s eta 0:00:00\nDownloading nh3-0.2.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.7/1.7 MB 110.8 MB/s eta 0:00:00\nDownloading packaging-23.2-py3-none-any.whl (53 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 53.0/53.0 kB 18.4 MB/s eta 0:00:00\nDownloading pathspec-0.11.2-py3-none-any.whl (29 kB)\nDownloading platformdirs-4.0.0-py3-none-any.whl (17 kB)\nDownloading pluggy-1.3.0-py3-none-any.whl (18 kB)\nDownloading pyflakes-3.1.0-py2.py3-none-any.whl (62 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 62.6/62.6 kB 21.4 MB/s eta 0:00:00\nDownloading pytest_cov-4.1.0-py3-none-any.whl (21 kB)\nDownloading pytest_mock-3.12.0-py3-none-any.whl (9.8 kB)\nDownloading pytest-7.4.3-py3-none-any.whl (325 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 325.1/325.1 kB 71.2 MB/s eta 0:00:00\nDownloading readme_renderer-42.0-py3-none-any.whl (13 kB)\nDownloading requests-2.31.0-py3-none-any.whl (62 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 62.6/62.6 kB 22.9 MB/s eta 0:00:00\nDownloading rich-13.7.0-py3-none-any.whl (240 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 240.6/240.6 kB 62.6 MB/s eta 0:00:00\nDownloading typing_extensions-4.8.0-py3-none-any.whl (31 kB)\nDownloading urllib3-2.1.0-py3-none-any.whl (104 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 104.6/104.6 kB 36.9 MB/s eta 0:00:00\nDownloading zipp-3.17.0-py3-none-any.whl (7.4 kB)\nUsing cached wheel-0.42.0-py3-none-any.whl (65 kB)\nDownloading cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl (4.4 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 4.4/4.4 MB 104.8 MB/s eta 0:00:00\nBuilding wheels for collected packages: pycountry, pytest-network\n  Building wheel for pycountry (pyproject.toml): started\n  Building wheel for pycountry (pyproject.toml): finished with status 'done'\n  Created wheel for pycountry: filename=pycountry-22.3.5-py2.py3-none-any.whl size=10681832 sha256=029c7ef12dee2f2023f60603db05ff6b2bd8529a5c34b9c6770cb19cf55f80b2\n  Stored in directory: /home/runner/.cache/pip/wheels/03/57/cc/290c5252ec97a6d78d36479a3c5e5ecc76318afcb241ad9dbe\n  Building wheel for pytest-network (pyproject.toml): started\n  Building wheel for pytest-network (pyproject.toml): finished with status 'done'\n  Created wheel for pytest-network: filename=pytest_network-0.0.1-py3-none-any.whl size=2960 sha256=5a5b0df8be5c7b49622d5be725889669c70d8f30e027a13b3cd5ad7791b7b972\n  Stored in directory: /home/runner/.cache/pip/wheels/d4/4d/d7/84f36e5490a746c74c91552708a74a4922d23092dd24d4e750\nSuccessfully built pycountry pytest-network\nInstalling collected packages: repoze.lru, pprintpp, nh3, zipp, wheel, urllib3, typing_extensions, tomli, rfc3986, Pygments, pyflakes, pycparser, pycountry, pluggy, platformdirs, pkginfo, pathspec, packaging, mypy-extensions, more-itertools, mdurl, jeepney, isort, iniconfig, exceptiongroup, docutils, coverage, click, charset-normalizer, certifi, requests, readme-renderer, pytest, pyproject_hooks, markdown-it-py, jaraco.classes, importlib-metadata, cffi, black, rich, requests-toolbelt, pytest-network, pytest-mock, pytest-cov, cryptography, cmarkgfm, build, SecretStorage, pycountry-convert, keyring, twine\nSuccessfully installed Pygments-2.17.2 SecretStorage-3.3.3 black-23.11.0 build-1.0.3 certifi-2023.11.17 cffi-1.16.0 charset-normalizer-3.3.2 click-8.1.7 cmarkgfm-2022.10.27 coverage-7.3.2 cryptography-41.0.7 docutils-0.20.1 exceptiongroup-1.2.0 importlib-metadata-6.8.0 iniconfig-2.0.0 isort-5.12.0 jaraco.classes-3.3.0 jeepney-0.8.0 keyring-24.3.0 markdown-it-py-3.0.0 mdurl-0.1.2 more-itertools-10.1.0 mypy-extensions-1.0.0 nh3-0.2.14 packaging-23.2 pathspec-0.11.2 pkginfo-1.9.6 platformdirs-4.0.0 pluggy-1.3.0 pprintpp-0.4.0 pycountry-22.3.5 pycountry-convert-0.7.2 pycparser-2.21 pyflakes-3.1.0 pyproject_hooks-1.0.0 pytest-7.4.3 pytest-cov-4.1.0 pytest-mock-3.12.0 pytest-network-0.0.1 readme-renderer-42.0 repoze.lru-0.7 requests-2.31.0 requests-toolbelt-1.0.0 rfc3986-2.0.0 rich-13.7.0 tomli-2.0.1 twine-4.0.2 typing_extensions-4.8.0 urllib3-2.1.0 wheel-0.42.0 zipp-3.17.0\n\nSetting blame.ignoreRevsFile to .git-blame-ingore-revs\n\nInstalling pre-commit hook\n\nRun source env/bin/activate to get your shell in to the virtualenv\nSee README.md for more information.\n\n## environment & versions ######################################################\nPython 3.10.13\npip 23.3.1 from /home/runner/work/octodns/octodns/env/lib/python3.10/site-packages/pip (python 3.10)\n## modules: \nblack==23.11.0\nbuild==1.0.3\ncertifi==2023.11.17\ncffi==1.16.0\ncharset-normalizer==3.3.2\nclick==8.1.7\ncmarkgfm==2022.10.27\ncoverage==7.3.2\ncryptography==41.0.7\ndnspython==2.4.2\ndocutils==0.20.1\nexceptiongroup==1.2.0\nfqdn==1.5.1\nidna==3.4\nimportlib-metadata==6.8.0\niniconfig==2.0.0\nisort==5.12.0\njaraco.classes==3.3.0\njeepney==0.8.0\nkeyring==24.3.0\nmarkdown-it-py==3.0.0\nmdurl==0.1.2\nmore-itertools==10.1.0\nmypy-extensions==1.0.0\nnatsort==8.4.0\nnh3==0.2.14\npackaging==23.2\npathspec==0.11.2\npkginfo==1.9.6\nplatformdirs==4.0.0\npluggy==1.3.0\npprintpp==0.4.0\npycountry==22.3.5\npycountry-convert==0.7.2\npycparser==2.21\npyflakes==3.1.0\nPygments==2.17.2\npyproject_hooks==1.0.0\npytest==7.4.3\npytest-cov==4.1.0\npytest-mock==3.12.0\npytest-network==0.0.1\npython-dateutil==2.8.2\nPyYAML==6.0.1\nreadme-renderer==42.0\nrepoze.lru==0.7\nrequests==2.31.0\nrequests-toolbelt==1.0.0\nrfc3986==2.0.0\nrich==13.7.0\nSecretStorage==3.3.3\nsix==1.16.0\ntomli==2.0.1\ntwine==4.0.2\ntyping_extensions==4.8.0\nurllib3==2.1.0\nzipp==3.17.0\n## clean up ####################################################################\n## begin #######################################################################\n## lint ########################################################################\n## formatting ##################################################################\nAll done! \u2728 \ud83c\udf70 \u2728\n110 files would be left unchanged.\n## tests/coverage ##############################################################\n============================= test session starts ==============================\nplatform linux -- Python 3.10.13, pytest-7.4.3, pluggy-1.3.0\nrootdir: /home/runner/work/octodns/octodns\nconfigfile: pyproject.toml\nplugins: mock-3.12.0, network-0.0.1, cov-4.1.0\ncollected 294 items\n\ntests/test_octodns_equality.py ..                                        [  0%]\ntests/test_octodns_idna.py .........                                     [  3%]\ntests/test_octodns_manager.py ...........................F.............. [ 18%]\n                                                                         [ 18%]\ntests/test_octodns_plan.py ..........                                    [ 21%]\ntests/test_octodns_processor_acme.py .                                   [ 21%]\ntests/test_octodns_processor_arpa.py .........                           [ 24%]\ntests/test_octodns_processor_filter.py ................                  [ 30%]\ntests/test_octodns_processor_meta.py ......                              [ 32%]\ntests/test_octodns_processor_ownership.py ...                            [ 33%]\ntests/test_octodns_processor_restrict.py .                               [ 33%]\ntests/test_octodns_processor_spf.py .......                              [ 36%]\ntests/test_octodns_provider_base.py ................................     [ 46%]\ntests/test_octodns_provider_yaml.py ...................                  [ 53%]\ntests/test_octodns_record.py .........................                   [ 61%]\ntests/test_octodns_record_a.py ..                                        [ 62%]\ntests/test_octodns_record_aaaa.py ...                                    [ 63%]\ntests/test_octodns_record_alias.py ...                                   [ 64%]\ntests/test_octodns_record_caa.py ....                                    [ 65%]\ntests/test_octodns_record_change.py ..                                   [ 66%]\ntests/test_octodns_record_chunked.py .                                   [ 67%]\ntests/test_octodns_record_cname.py ...                                   [ 68%]\ntests/test_octodns_record_dname.py ...                                   [ 69%]\ntests/test_octodns_record_ds.py .                                        [ 69%]\ntests/test_octodns_record_dynamic.py ................                    [ 74%]\ntests/test_octodns_record_geo.py .......                                 [ 77%]\ntests/test_octodns_record_ip.py .                                        [ 77%]\ntests/test_octodns_record_loc.py ....                                    [ 78%]\ntests/test_octodns_record_mx.py ....                                     [ 80%]\ntests/test_octodns_record_naptr.py ...                                   [ 81%]\ntests/test_octodns_record_ns.py ...                                      [ 82%]\ntests/test_octodns_record_ptr.py ...                                     [ 83%]\ntests/test_octodns_record_spf.py ..                                      [ 84%]\ntests/test_octodns_record_srv.py ....                                    [ 85%]\ntests/test_octodns_record_sshfp.py ....                                  [ 86%]\ntests/test_octodns_record_target.py .                                    [ 87%]\ntests/test_octodns_record_tlsa.py ...                                    [ 88%]\ntests/test_octodns_record_txt.py ....                                    [ 89%]\ntests/test_octodns_record_urlfwd.py ..                                   [ 90%]\ntests/test_octodns_source_envvar.py ..                                   [ 90%]\ntests/test_octodns_source_tinydns.py .....                               [ 92%]\ntests/test_octodns_yaml.py ..                                            [ 93%]\ntests/test_octodns_zone.py ....................                          [100%]\n\n=================================== FAILURES ===================================\n________________________ TestManager.test_missing_zone _________________________\n\nself = <test_octodns_manager.TestManager testMethod=test_missing_zone>\n\n    def test_missing_zone(self):\n        with self.assertRaises(ManagerException) as ctx:\n            Manager(get_config_filename('dynamic-config.yaml')).sync(\n                ['missing.zones.']\n            )\n>       self.assertTrue('Requested zone:' in str(ctx.exception))\nE       AssertionError: False is not true\n\ntests/test_octodns_manager.py:87: AssertionError\n\n---------- coverage: platform linux, python 3.10.13-final-0 ----------\nName                             Stmts   Miss Branch BrPart  Cover\n------------------------------------------------------------------\noctodns/__init__.py                  1      0      0      0   100%\noctodns/context.py                   4      0      0      0   100%\noctodns/deprecation.py               3      0      0      0   100%\noctodns/equality.py                 15      0      0      0   100%\noctodns/idna.py                     53      0     13      0   100%\noctodns/manager.py                 509      0    214      0   100%\noctodns/processor/__init__.py        0      0      0      0   100%\noctodns/processor/acme.py           22      0      8      0   100%\noctodns/processor/arpa.py           40      0     20      0   100%\noctodns/processor/base.py           13      0      0      0   100%\noctodns/processor/filter.py        134      0     46      0   100%\noctodns/processor/meta.py           48      0     12      0   100%\noctodns/processor/ownership.py      45      0     20      0   100%\noctodns/processor/restrict.py       21      0     10      0   100%\noctodns/processor/spf.py            59      0     26      0   100%\noctodns/provider/__init__.py         4      0      0      0   100%\noctodns/provider/base.py           147      0     72      0   100%\noctodns/provider/plan.py           203      0     65      0   100%\noctodns/provider/yaml.py           177      0     84      0   100%\noctodns/record/__init__.py          73      0      0      0   100%\noctodns/record/a.py                 13      0      0      0   100%\noctodns/record/aaaa.py              13      0      0      0   100%\noctodns/record/alias.py             15      0      2      0   100%\noctodns/record/base.py             268      0     72      0   100%\noctodns/record/caa.py               71      0     12      0   100%\noctodns/record/change.py            28      0      0      0   100%\noctodns/record/chunked.py           49      0     16      0   100%\noctodns/record/cname.py             16      0      2      0   100%\noctodns/record/dname.py              9      0      0      0   100%\noctodns/record/ds.py               121      0     26      0   100%\noctodns/record/dynamic.py          270      0    118      0   100%\noctodns/record/exception.py         17      0      2      0   100%\noctodns/record/geo.py              117      0     36      0   100%\noctodns/record/geo_data.py           1      0      0      0   100%\noctodns/record/ip.py                33      0     14      0   100%\noctodns/record/loc.py              184      0     24      0   100%\noctodns/record/mx.py                88      0     14      0   100%\noctodns/record/naptr.py            109      0     16      0   100%\noctodns/record/ns.py                 8      0      0      0   100%\noctodns/record/ptr.py               11      0      0      0   100%\noctodns/record/rr.py                12      0      0      0   100%\noctodns/record/spf.py               10      0      0      0   100%\noctodns/record/srv.py              117      0     20      0   100%\noctodns/record/sshfp.py             86      0     16      0   100%\noctodns/record/subnet.py            13      0      0      0   100%\noctodns/record/target.py            57      0     22      0   100%\noctodns/record/tlsa.py              97      0     20      0   100%\noctodns/record/txt.py                8      0      0      0   100%\noctodns/record/urlfwd.py            85      0     22      0   100%\noctodns/source/__init__.py           0      0      0      0   100%\noctodns/source/base.py              22      0      6      0   100%\noctodns/source/envvar.py            36      0      2      0   100%\noctodns/source/tinydns.py          239      0    130      0   100%\noctodns/yaml.py                     48      0     10      0   100%\noctodns/zone.py                    168      0     93      0   100%\n------------------------------------------------------------------\nTOTAL                             4010      0   1285      0   100%\nCoverage HTML written to dir htmlcov\nCoverage XML written to file coverage.xml\n\nRequired test coverage of 100% reached. Total coverage: 100.00%\n=========================== short test summary info ============================\nFAILED tests/test_octodns_manager.py::TestManager::test_missing_zone - AssertionError: False is not true\n======================== 1 failed, 293 passed in 6.01s =========================\n##[error]Process completed with exit code 1.\n"}, {"step_name": "ci (3.11)/5_CI Build.txt", "log": "##[group]Run ./script/cibuild\n\u001b[36;1m./script/cibuild\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n  pythonLocation: /opt/hostedtoolcache/Python/3.11.7/x64\n  PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.11.7/x64/lib/pkgconfig\n  Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.7/x64\n  Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.7/x64\n  Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.7/x64\n  LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.11.7/x64/lib\n##[endgroup]\n## bootstrap ###################################################################\nRequirement already satisfied: pip>=10.0.1 in ./env/lib/python3.11/site-packages (23.2.1)\nCollecting pip>=10.0.1\n  Obtaining dependency information for pip>=10.0.1 from https://files.pythonhosted.org/packages/47/6a/453160888fab7c6a432a6e25f8afe6256d0d9f2cbd25971021da6491d899/pip-23.3.1-py3-none-any.whl.metadata\n  Downloading pip-23.3.1-py3-none-any.whl.metadata (3.5 kB)\nDownloading pip-23.3.1-py3-none-any.whl (2.1 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 2.1/2.1 MB 45.1 MB/s eta 0:00:00\nInstalling collected packages: pip\n  Attempting uninstall: pip\n    Found existing installation: pip 23.2.1\n    Uninstalling pip-23.2.1:\n      Successfully uninstalled pip-23.2.1\nSuccessfully installed pip-23.3.1\nCollecting PyYAML==6.0.1 (from -r requirements.txt (line 2))\n  Using cached PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)\nCollecting dnspython==2.4.2 (from -r requirements.txt (line 3))\n  Using cached dnspython-2.4.2-py3-none-any.whl.metadata (4.9 kB)\nCollecting fqdn==1.5.1 (from -r requirements.txt (line 4))\n  Using cached fqdn-1.5.1-py3-none-any.whl (9.1 kB)\nCollecting idna==3.4 (from -r requirements.txt (line 5))\n  Using cached idna-3.4-py3-none-any.whl (61 kB)\nCollecting natsort==8.4.0 (from -r requirements.txt (line 6))\n  Using cached natsort-8.4.0-py3-none-any.whl.metadata (21 kB)\nCollecting python-dateutil==2.8.2 (from -r requirements.txt (line 7))\n  Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)\nCollecting six==1.16.0 (from -r requirements.txt (line 8))\n  Using cached six-1.16.0-py2.py3-none-any.whl (11 kB)\nUsing cached PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (757 kB)\nUsing cached dnspython-2.4.2-py3-none-any.whl (300 kB)\nUsing cached natsort-8.4.0-py3-none-any.whl (38 kB)\nInstalling collected packages: six, PyYAML, natsort, idna, fqdn, dnspython, python-dateutil\nSuccessfully installed PyYAML-6.0.1 dnspython-2.4.2 fqdn-1.5.1 idna-3.4 natsort-8.4.0 python-dateutil-2.8.2 six-1.16.0\nCollecting Pygments==2.17.2 (from -r requirements-dev.txt (line 2))\n  Downloading pygments-2.17.2-py3-none-any.whl.metadata (2.6 kB)\nCollecting black==23.11.0 (from -r requirements-dev.txt (line 3))\n  Downloading black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (66 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 66.9/66.9 kB 3.3 MB/s eta 0:00:00\nCollecting build==1.0.3 (from -r requirements-dev.txt (line 4))\n  Downloading build-1.0.3-py3-none-any.whl.metadata (4.2 kB)\nCollecting certifi==2023.11.17 (from -r requirements-dev.txt (line 5))\n  Downloading certifi-2023.11.17-py3-none-any.whl.metadata (2.2 kB)\nCollecting cffi==1.16.0 (from -r requirements-dev.txt (line 6))\n  Downloading cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)\nCollecting charset-normalizer==3.3.2 (from -r requirements-dev.txt (line 7))\n  Downloading charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)\nCollecting click==8.1.7 (from -r requirements-dev.txt (line 8))\n  Downloading click-8.1.7-py3-none-any.whl.metadata (3.0 kB)\nCollecting cmarkgfm==2022.10.27 (from -r requirements-dev.txt (line 9))\n  Downloading cmarkgfm-2022.10.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 435.0/435.0 kB 52.3 MB/s eta 0:00:00\nCollecting coverage==7.3.2 (from -r requirements-dev.txt (line 10))\n  Downloading coverage-7.3.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB)\nCollecting docutils==0.20.1 (from -r requirements-dev.txt (line 11))\n  Downloading docutils-0.20.1-py3-none-any.whl.metadata (2.8 kB)\nCollecting exceptiongroup==1.2.0 (from -r requirements-dev.txt (line 12))\n  Downloading exceptiongroup-1.2.0-py3-none-any.whl.metadata (6.6 kB)\nCollecting importlib-metadata==6.8.0 (from -r requirements-dev.txt (line 13))\n  Downloading importlib_metadata-6.8.0-py3-none-any.whl.metadata (5.1 kB)\nCollecting iniconfig==2.0.0 (from -r requirements-dev.txt (line 14))\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting isort==5.12.0 (from -r requirements-dev.txt (line 15))\n  Downloading isort-5.12.0-py3-none-any.whl (91 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 91.2/91.2 kB 29.5 MB/s eta 0:00:00\nCollecting jaraco.classes==3.3.0 (from -r requirements-dev.txt (line 16))\n  Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)\nCollecting keyring==24.3.0 (from -r requirements-dev.txt (line 17))\n  Downloading keyring-24.3.0-py3-none-any.whl.metadata (20 kB)\nCollecting markdown-it-py==3.0.0 (from -r requirements-dev.txt (line 18))\n  Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB)\nCollecting mdurl==0.1.2 (from -r requirements-dev.txt (line 19))\n  Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)\nCollecting more-itertools==10.1.0 (from -r requirements-dev.txt (line 20))\n  Downloading more_itertools-10.1.0-py3-none-any.whl.metadata (33 kB)\nCollecting mypy-extensions==1.0.0 (from -r requirements-dev.txt (line 21))\n  Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB)\nCollecting nh3==0.2.14 (from -r requirements-dev.txt (line 22))\n  Downloading nh3-0.2.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.6 kB)\nCollecting packaging==23.2 (from -r requirements-dev.txt (line 23))\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pathspec==0.11.2 (from -r requirements-dev.txt (line 24))\n  Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)\nCollecting pkginfo==1.9.6 (from -r requirements-dev.txt (line 25))\n  Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)\nCollecting platformdirs==4.0.0 (from -r requirements-dev.txt (line 26))\n  Downloading platformdirs-4.0.0-py3-none-any.whl.metadata (11 kB)\nCollecting pluggy==1.3.0 (from -r requirements-dev.txt (line 27))\n  Downloading pluggy-1.3.0-py3-none-any.whl.metadata (4.3 kB)\nCollecting pprintpp==0.4.0 (from -r requirements-dev.txt (line 28))\n  Downloading pprintpp-0.4.0-py2.py3-none-any.whl (16 kB)\nCollecting pycountry-convert==0.7.2 (from -r requirements-dev.txt (line 29))\n  Downloading pycountry_convert-0.7.2-py3-none-any.whl (13 kB)\nCollecting pycountry==22.3.5 (from -r requirements-dev.txt (line 30))\n  Downloading pycountry-22.3.5.tar.gz (10.1 MB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 10.1/10.1 MB 117.6 MB/s eta 0:00:00\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting pycparser==2.21 (from -r requirements-dev.txt (line 31))\n  Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 118.7/118.7 kB 38.2 MB/s eta 0:00:00\nCollecting pyflakes==3.1.0 (from -r requirements-dev.txt (line 32))\n  Downloading pyflakes-3.1.0-py2.py3-none-any.whl.metadata (3.5 kB)\nCollecting pyproject_hooks==1.0.0 (from -r requirements-dev.txt (line 33))\n  Downloading pyproject_hooks-1.0.0-py3-none-any.whl (9.3 kB)\nCollecting pytest-cov==4.1.0 (from -r requirements-dev.txt (line 34))\n  Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB)\nCollecting pytest-mock==3.12.0 (from -r requirements-dev.txt (line 35))\n  Downloading pytest_mock-3.12.0-py3-none-any.whl.metadata (3.8 kB)\nCollecting pytest-network==0.0.1 (from -r requirements-dev.txt (line 36))\n  Downloading pytest_network-0.0.1.tar.gz (2.8 kB)\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting pytest==7.4.3 (from -r requirements-dev.txt (line 37))\n  Downloading pytest-7.4.3-py3-none-any.whl.metadata (7.9 kB)\nCollecting readme-renderer==42.0 (from -r requirements-dev.txt (line 38))\n  Downloading readme_renderer-42.0-py3-none-any.whl.metadata (2.8 kB)\nCollecting repoze.lru==0.7 (from -r requirements-dev.txt (line 39))\n  Downloading repoze.lru-0.7-py3-none-any.whl (10 kB)\nCollecting requests-toolbelt==1.0.0 (from -r requirements-dev.txt (line 40))\n  Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 54.5/54.5 kB 20.7 MB/s eta 0:00:00\nCollecting requests==2.31.0 (from -r requirements-dev.txt (line 41))\n  Downloading requests-2.31.0-py3-none-any.whl.metadata (4.6 kB)\nCollecting rfc3986==2.0.0 (from -r requirements-dev.txt (line 42))\n  Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\nCollecting rich==13.7.0 (from -r requirements-dev.txt (line 43))\n  Downloading rich-13.7.0-py3-none-any.whl.metadata (18 kB)\nCollecting tomli==2.0.1 (from -r requirements-dev.txt (line 44))\n  Downloading tomli-2.0.1-py3-none-any.whl (12 kB)\nCollecting twine==4.0.2 (from -r requirements-dev.txt (line 45))\n  Downloading twine-4.0.2-py3-none-any.whl (36 kB)\nCollecting typing_extensions==4.8.0 (from -r requirements-dev.txt (line 46))\n  Downloading typing_extensions-4.8.0-py3-none-any.whl.metadata (3.0 kB)\nCollecting urllib3==2.1.0 (from -r requirements-dev.txt (line 47))\n  Downloading urllib3-2.1.0-py3-none-any.whl.metadata (6.4 kB)\nCollecting zipp==3.17.0 (from -r requirements-dev.txt (line 48))\n  Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)\nCollecting SecretStorage>=3.2 (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2 (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 48.4/48.4 kB 15.1 MB/s eta 0:00:00\nCollecting wheel>=0.30.0 (from pycountry-convert==0.7.2->-r requirements-dev.txt (line 29))\n  Using cached wheel-0.42.0-py3-none-any.whl.metadata (2.2 kB)\nRequirement already satisfied: setuptools in ./env/lib/python3.11/site-packages (from pycountry==22.3.5->-r requirements-dev.txt (line 30)) (65.5.0)\nRequirement already satisfied: idna<4,>=2.5 in ./env/lib/python3.11/site-packages (from requests==2.31.0->-r requirements-dev.txt (line 41)) (3.4)\nCollecting cryptography>=2.0 (from SecretStorage>=3.2->keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)\nDownloading pygments-2.17.2-py3-none-any.whl (1.2 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.2/1.2 MB 102.1 MB/s eta 0:00:00\nDownloading black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.7/1.7 MB 107.8 MB/s eta 0:00:00\nDownloading build-1.0.3-py3-none-any.whl (18 kB)\nDownloading certifi-2023.11.17-py3-none-any.whl (162 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 162.5/162.5 kB 50.4 MB/s eta 0:00:00\nDownloading cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 464.8/464.8 kB 79.6 MB/s eta 0:00:00\nDownloading charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 140.3/140.3 kB 45.9 MB/s eta 0:00:00\nDownloading click-8.1.7-py3-none-any.whl (97 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 97.9/97.9 kB 34.3 MB/s eta 0:00:00\nDownloading coverage-7.3.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 231.4/231.4 kB 59.5 MB/s eta 0:00:00\nDownloading docutils-0.20.1-py3-none-any.whl (572 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 572.7/572.7 kB 89.8 MB/s eta 0:00:00\nDownloading exceptiongroup-1.2.0-py3-none-any.whl (16 kB)\nDownloading importlib_metadata-6.8.0-py3-none-any.whl (22 kB)\nDownloading jaraco.classes-3.3.0-py3-none-any.whl (5.9 kB)\nDownloading keyring-24.3.0-py3-none-any.whl (38 kB)\nDownloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 87.5/87.5 kB 28.4 MB/s eta 0:00:00\nDownloading more_itertools-10.1.0-py3-none-any.whl (55 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 55.8/55.8 kB 18.3 MB/s eta 0:00:00\nDownloading nh3-0.2.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.7/1.7 MB 110.3 MB/s eta 0:00:00\nDownloading packaging-23.2-py3-none-any.whl (53 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 53.0/53.0 kB 18.6 MB/s eta 0:00:00\nDownloading pathspec-0.11.2-py3-none-any.whl (29 kB)\nDownloading platformdirs-4.0.0-py3-none-any.whl (17 kB)\nDownloading pluggy-1.3.0-py3-none-any.whl (18 kB)\nDownloading pyflakes-3.1.0-py2.py3-none-any.whl (62 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 62.6/62.6 kB 22.0 MB/s eta 0:00:00\nDownloading pytest_cov-4.1.0-py3-none-any.whl (21 kB)\nDownloading pytest_mock-3.12.0-py3-none-any.whl (9.8 kB)\nDownloading pytest-7.4.3-py3-none-any.whl (325 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 325.1/325.1 kB 69.5 MB/s eta 0:00:00\nDownloading readme_renderer-42.0-py3-none-any.whl (13 kB)\nDownloading requests-2.31.0-py3-none-any.whl (62 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 62.6/62.6 kB 23.6 MB/s eta 0:00:00\nDownloading rich-13.7.0-py3-none-any.whl (240 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 240.6/240.6 kB 56.7 MB/s eta 0:00:00\nDownloading typing_extensions-4.8.0-py3-none-any.whl (31 kB)\nDownloading urllib3-2.1.0-py3-none-any.whl (104 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 104.6/104.6 kB 36.4 MB/s eta 0:00:00\nDownloading zipp-3.17.0-py3-none-any.whl (7.4 kB)\nUsing cached wheel-0.42.0-py3-none-any.whl (65 kB)\nDownloading cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl (4.4 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 4.4/4.4 MB 122.6 MB/s eta 0:00:00\nBuilding wheels for collected packages: pycountry, pytest-network\n  Building wheel for pycountry (pyproject.toml): started\n  Building wheel for pycountry (pyproject.toml): finished with status 'done'\n  Created wheel for pycountry: filename=pycountry-22.3.5-py2.py3-none-any.whl size=10681832 sha256=1f3a135bad4f2c47c4971b5f2047ef7f47088363de2713410a07b63b56ef76bc\n  Stored in directory: /home/runner/.cache/pip/wheels/cd/29/8b/617685ed7942656b36efb06ff9247dbe832e3f4f7724fffc09\n  Building wheel for pytest-network (pyproject.toml): started\n  Building wheel for pytest-network (pyproject.toml): finished with status 'done'\n  Created wheel for pytest-network: filename=pytest_network-0.0.1-py3-none-any.whl size=2960 sha256=44cf2c353b920c5984e64d21fe75a9c219f4d219a8a908b71a8f7b84da2d8afb\n  Stored in directory: /home/runner/.cache/pip/wheels/da/cb/c3/504bc4a9f8dadada066a674b01af36cd6144a159cab93c8c85\nSuccessfully built pycountry pytest-network\nInstalling collected packages: repoze.lru, pprintpp, nh3, zipp, wheel, urllib3, typing_extensions, tomli, rfc3986, pyproject_hooks, Pygments, pyflakes, pycparser, pycountry, pluggy, platformdirs, pkginfo, pathspec, packaging, mypy-extensions, more-itertools, mdurl, jeepney, isort, iniconfig, exceptiongroup, docutils, coverage, click, charset-normalizer, certifi, requests, readme-renderer, pytest, markdown-it-py, jaraco.classes, importlib-metadata, cffi, build, black, rich, requests-toolbelt, pytest-network, pytest-mock, pytest-cov, cryptography, cmarkgfm, SecretStorage, pycountry-convert, keyring, twine\nSuccessfully installed Pygments-2.17.2 SecretStorage-3.3.3 black-23.11.0 build-1.0.3 certifi-2023.11.17 cffi-1.16.0 charset-normalizer-3.3.2 click-8.1.7 cmarkgfm-2022.10.27 coverage-7.3.2 cryptography-41.0.7 docutils-0.20.1 exceptiongroup-1.2.0 importlib-metadata-6.8.0 iniconfig-2.0.0 isort-5.12.0 jaraco.classes-3.3.0 jeepney-0.8.0 keyring-24.3.0 markdown-it-py-3.0.0 mdurl-0.1.2 more-itertools-10.1.0 mypy-extensions-1.0.0 nh3-0.2.14 packaging-23.2 pathspec-0.11.2 pkginfo-1.9.6 platformdirs-4.0.0 pluggy-1.3.0 pprintpp-0.4.0 pycountry-22.3.5 pycountry-convert-0.7.2 pycparser-2.21 pyflakes-3.1.0 pyproject_hooks-1.0.0 pytest-7.4.3 pytest-cov-4.1.0 pytest-mock-3.12.0 pytest-network-0.0.1 readme-renderer-42.0 repoze.lru-0.7 requests-2.31.0 requests-toolbelt-1.0.0 rfc3986-2.0.0 rich-13.7.0 tomli-2.0.1 twine-4.0.2 typing_extensions-4.8.0 urllib3-2.1.0 wheel-0.42.0 zipp-3.17.0\n\nSetting blame.ignoreRevsFile to .git-blame-ingore-revs\n\nInstalling pre-commit hook\n\nRun source env/bin/activate to get your shell in to the virtualenv\nSee README.md for more information.\n\n## environment & versions ######################################################\nPython 3.11.7\npip 23.3.1 from /home/runner/work/octodns/octodns/env/lib/python3.11/site-packages/pip (python 3.11)\n## modules: \nblack==23.11.0\nbuild==1.0.3\ncertifi==2023.11.17\ncffi==1.16.0\ncharset-normalizer==3.3.2\nclick==8.1.7\ncmarkgfm==2022.10.27\ncoverage==7.3.2\ncryptography==41.0.7\ndnspython==2.4.2\ndocutils==0.20.1\nexceptiongroup==1.2.0\nfqdn==1.5.1\nidna==3.4\nimportlib-metadata==6.8.0\niniconfig==2.0.0\nisort==5.12.0\njaraco.classes==3.3.0\njeepney==0.8.0\nkeyring==24.3.0\nmarkdown-it-py==3.0.0\nmdurl==0.1.2\nmore-itertools==10.1.0\nmypy-extensions==1.0.0\nnatsort==8.4.0\nnh3==0.2.14\npackaging==23.2\npathspec==0.11.2\npkginfo==1.9.6\nplatformdirs==4.0.0\npluggy==1.3.0\npprintpp==0.4.0\npycountry==22.3.5\npycountry-convert==0.7.2\npycparser==2.21\npyflakes==3.1.0\nPygments==2.17.2\npyproject_hooks==1.0.0\npytest==7.4.3\npytest-cov==4.1.0\npytest-mock==3.12.0\npytest-network==0.0.1\npython-dateutil==2.8.2\nPyYAML==6.0.1\nreadme-renderer==42.0\nrepoze.lru==0.7\nrequests==2.31.0\nrequests-toolbelt==1.0.0\nrfc3986==2.0.0\nrich==13.7.0\nSecretStorage==3.3.3\nsix==1.16.0\ntomli==2.0.1\ntwine==4.0.2\ntyping_extensions==4.8.0\nurllib3==2.1.0\nzipp==3.17.0\n## clean up ####################################################################\n## begin #######################################################################\n## lint ########################################################################\n## formatting ##################################################################\nAll done! \u2728 \ud83c\udf70 \u2728\n110 files would be left unchanged.\n## tests/coverage ##############################################################\n============================= test session starts ==============================\nplatform linux -- Python 3.11.7, pytest-7.4.3, pluggy-1.3.0\nrootdir: /home/runner/work/octodns/octodns\nconfigfile: pyproject.toml\nplugins: mock-3.12.0, network-0.0.1, cov-4.1.0\ncollected 294 items\n\ntests/test_octodns_equality.py ..                                        [  0%]\ntests/test_octodns_idna.py .........                                     [  3%]\ntests/test_octodns_manager.py ...........................F.............. [ 18%]\n                                                                         [ 18%]\ntests/test_octodns_plan.py ..........                                    [ 21%]\ntests/test_octodns_processor_acme.py .                                   [ 21%]\ntests/test_octodns_processor_arpa.py .........                           [ 24%]\ntests/test_octodns_processor_filter.py ................                  [ 30%]\ntests/test_octodns_processor_meta.py ......                              [ 32%]\ntests/test_octodns_processor_ownership.py ...                            [ 33%]\ntests/test_octodns_processor_restrict.py .                               [ 33%]\ntests/test_octodns_processor_spf.py .......                              [ 36%]\ntests/test_octodns_provider_base.py ................................     [ 46%]\ntests/test_octodns_provider_yaml.py ...................                  [ 53%]\ntests/test_octodns_record.py .........................                   [ 61%]\ntests/test_octodns_record_a.py ..                                        [ 62%]\ntests/test_octodns_record_aaaa.py ...                                    [ 63%]\ntests/test_octodns_record_alias.py ...                                   [ 64%]\ntests/test_octodns_record_caa.py ....                                    [ 65%]\ntests/test_octodns_record_change.py ..                                   [ 66%]\ntests/test_octodns_record_chunked.py .                                   [ 67%]\ntests/test_octodns_record_cname.py ...                                   [ 68%]\ntests/test_octodns_record_dname.py ...                                   [ 69%]\ntests/test_octodns_record_ds.py .                                        [ 69%]\ntests/test_octodns_record_dynamic.py ................                    [ 74%]\ntests/test_octodns_record_geo.py .......                                 [ 77%]\ntests/test_octodns_record_ip.py .                                        [ 77%]\ntests/test_octodns_record_loc.py ....                                    [ 78%]\ntests/test_octodns_record_mx.py ....                                     [ 80%]\ntests/test_octodns_record_naptr.py ...                                   [ 81%]\ntests/test_octodns_record_ns.py ...                                      [ 82%]\ntests/test_octodns_record_ptr.py ...                                     [ 83%]\ntests/test_octodns_record_spf.py ..                                      [ 84%]\ntests/test_octodns_record_srv.py ....                                    [ 85%]\ntests/test_octodns_record_sshfp.py ....                                  [ 86%]\ntests/test_octodns_record_target.py .                                    [ 87%]\ntests/test_octodns_record_tlsa.py ...                                    [ 88%]\ntests/test_octodns_record_txt.py ....                                    [ 89%]\ntests/test_octodns_record_urlfwd.py ..                                   [ 90%]\ntests/test_octodns_source_envvar.py ..                                   [ 90%]\ntests/test_octodns_source_tinydns.py .....                               [ 92%]\ntests/test_octodns_yaml.py ..                                            [ 93%]\ntests/test_octodns_zone.py ....................                          [100%]\n\n=================================== FAILURES ===================================\n________________________ TestManager.test_missing_zone _________________________\n\nself = <test_octodns_manager.TestManager testMethod=test_missing_zone>\n\n    def test_missing_zone(self):\n        with self.assertRaises(ManagerException) as ctx:\n            Manager(get_config_filename('dynamic-config.yaml')).sync(\n                ['missing.zones.']\n            )\n>       self.assertTrue('Requested zone:' in str(ctx.exception))\nE       AssertionError: False is not true\n\ntests/test_octodns_manager.py:87: AssertionError\n\n---------- coverage: platform linux, python 3.11.7-final-0 -----------\nName                             Stmts   Miss Branch BrPart  Cover\n------------------------------------------------------------------\noctodns/__init__.py                  1      0      0      0   100%\noctodns/context.py                   4      0      0      0   100%\noctodns/deprecation.py               3      0      0      0   100%\noctodns/equality.py                 15      0      0      0   100%\noctodns/idna.py                     53      0     13      0   100%\noctodns/manager.py                 509      0    216      0   100%\noctodns/processor/__init__.py        0      0      0      0   100%\noctodns/processor/acme.py           22      0      8      0   100%\noctodns/processor/arpa.py           40      0     20      0   100%\noctodns/processor/base.py           13      0      0      0   100%\noctodns/processor/filter.py        134      0     46      0   100%\noctodns/processor/meta.py           48      0     16      0   100%\noctodns/processor/ownership.py      45      0     20      0   100%\noctodns/processor/restrict.py       21      0     10      0   100%\noctodns/processor/spf.py            59      0     26      0   100%\noctodns/provider/__init__.py         4      0      0      0   100%\noctodns/provider/base.py           147      0     72      0   100%\noctodns/provider/plan.py           203      0     65      0   100%\noctodns/provider/yaml.py           177      0     88      0   100%\noctodns/record/__init__.py          73      0      0      0   100%\noctodns/record/a.py                 13      0      0      0   100%\noctodns/record/aaaa.py              13      0      0      0   100%\noctodns/record/alias.py             15      0      4      0   100%\noctodns/record/base.py             268      0    118      0   100%\noctodns/record/caa.py               71      0     34      0   100%\noctodns/record/change.py            28      0      2      0   100%\noctodns/record/chunked.py           49      0     28      0   100%\noctodns/record/cname.py             16      0      4      0   100%\noctodns/record/dname.py              9      0      0      0   100%\noctodns/record/ds.py               121      0     52      0   100%\noctodns/record/dynamic.py          270      0    124      0   100%\noctodns/record/exception.py         17      0      4      0   100%\noctodns/record/geo.py              117      0     50      0   100%\noctodns/record/geo_data.py           1      0      0      0   100%\noctodns/record/ip.py                33      0     22      0   100%\noctodns/record/loc.py              184      0     82      0   100%\noctodns/record/mx.py                88      0     32      0   100%\noctodns/record/naptr.py            109      0     50      0   100%\noctodns/record/ns.py                 8      0      0      0   100%\noctodns/record/ptr.py               11      0      2      0   100%\noctodns/record/rr.py                12      0      0      0   100%\noctodns/record/spf.py               10      0      0      0   100%\noctodns/record/srv.py              117      0     48      0   100%\noctodns/record/sshfp.py             86      0     38      0   100%\noctodns/record/subnet.py            13      0      4      0   100%\noctodns/record/target.py            57      0     38      0   100%\noctodns/record/tlsa.py              97      0     44      0   100%\noctodns/record/txt.py                8      0      0      0   100%\noctodns/record/urlfwd.py            85      0     46      0   100%\noctodns/source/__init__.py           0      0      0      0   100%\noctodns/source/base.py              22      0      8      0   100%\noctodns/source/envvar.py            36      0      2      0   100%\noctodns/source/tinydns.py          239      0    132      0   100%\noctodns/yaml.py                     48      0     10      0   100%\noctodns/zone.py                    168      0     97      0   100%\n------------------------------------------------------------------\nTOTAL                             4010      0   1675      0   100%\nCoverage HTML written to dir htmlcov\nCoverage XML written to file coverage.xml\n\nRequired test coverage of 100% reached. Total coverage: 100.00%\n=========================== short test summary info ============================\nFAILED tests/test_octodns_manager.py::TestManager::test_missing_zone - AssertionError: False is not true\n======================== 1 failed, 293 passed in 5.45s =========================\n##[error]Process completed with exit code 1.\n"}, {"step_name": "ci (3.12)/5_CI Build.txt", "log": "##[group]Run ./script/cibuild\n\u001b[36;1m./script/cibuild\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n  pythonLocation: /opt/hostedtoolcache/Python/3.12.1/x64\n  PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.12.1/x64/lib/pkgconfig\n  Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.1/x64\n  Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.1/x64\n  Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.1/x64\n  LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.12.1/x64/lib\n##[endgroup]\n## bootstrap ###################################################################\nRequirement already satisfied: pip>=10.0.1 in ./env/lib/python3.12/site-packages (23.2.1)\nCollecting pip>=10.0.1\n  Obtaining dependency information for pip>=10.0.1 from https://files.pythonhosted.org/packages/47/6a/453160888fab7c6a432a6e25f8afe6256d0d9f2cbd25971021da6491d899/pip-23.3.1-py3-none-any.whl.metadata\n  Downloading pip-23.3.1-py3-none-any.whl.metadata (3.5 kB)\nDownloading pip-23.3.1-py3-none-any.whl (2.1 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 2.1/2.1 MB 42.9 MB/s eta 0:00:00\nInstalling collected packages: pip\n  Attempting uninstall: pip\n    Found existing installation: pip 23.2.1\n    Uninstalling pip-23.2.1:\n      Successfully uninstalled pip-23.2.1\nSuccessfully installed pip-23.3.1\nCollecting PyYAML==6.0.1 (from -r requirements.txt (line 2))\n  Using cached PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)\nCollecting dnspython==2.4.2 (from -r requirements.txt (line 3))\n  Using cached dnspython-2.4.2-py3-none-any.whl.metadata (4.9 kB)\nCollecting fqdn==1.5.1 (from -r requirements.txt (line 4))\n  Using cached fqdn-1.5.1-py3-none-any.whl (9.1 kB)\nCollecting idna==3.4 (from -r requirements.txt (line 5))\n  Using cached idna-3.4-py3-none-any.whl (61 kB)\nCollecting natsort==8.4.0 (from -r requirements.txt (line 6))\n  Using cached natsort-8.4.0-py3-none-any.whl.metadata (21 kB)\nCollecting python-dateutil==2.8.2 (from -r requirements.txt (line 7))\n  Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)\nCollecting six==1.16.0 (from -r requirements.txt (line 8))\n  Using cached six-1.16.0-py2.py3-none-any.whl (11 kB)\nUsing cached PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (724 kB)\nUsing cached dnspython-2.4.2-py3-none-any.whl (300 kB)\nUsing cached natsort-8.4.0-py3-none-any.whl (38 kB)\nInstalling collected packages: six, PyYAML, natsort, idna, fqdn, dnspython, python-dateutil\nSuccessfully installed PyYAML-6.0.1 dnspython-2.4.2 fqdn-1.5.1 idna-3.4 natsort-8.4.0 python-dateutil-2.8.2 six-1.16.0\nCollecting Pygments==2.17.2 (from -r requirements-dev.txt (line 2))\n  Downloading pygments-2.17.2-py3-none-any.whl.metadata (2.6 kB)\nCollecting black==23.11.0 (from -r requirements-dev.txt (line 3))\n  Downloading black-23.11.0-py3-none-any.whl.metadata (66 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 66.9/66.9 kB 3.5 MB/s eta 0:00:00\nCollecting build==1.0.3 (from -r requirements-dev.txt (line 4))\n  Downloading build-1.0.3-py3-none-any.whl.metadata (4.2 kB)\nCollecting certifi==2023.11.17 (from -r requirements-dev.txt (line 5))\n  Downloading certifi-2023.11.17-py3-none-any.whl.metadata (2.2 kB)\nCollecting cffi==1.16.0 (from -r requirements-dev.txt (line 6))\n  Downloading cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)\nCollecting charset-normalizer==3.3.2 (from -r requirements-dev.txt (line 7))\n  Downloading charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)\nCollecting click==8.1.7 (from -r requirements-dev.txt (line 8))\n  Downloading click-8.1.7-py3-none-any.whl.metadata (3.0 kB)\nCollecting cmarkgfm==2022.10.27 (from -r requirements-dev.txt (line 9))\n  Downloading cmarkgfm-2022.10.27.tar.gz (141 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 141.2/141.2 kB 29.2 MB/s eta 0:00:00\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Installing backend dependencies: started\n  Installing backend dependencies: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting coverage==7.3.2 (from -r requirements-dev.txt (line 10))\n  Downloading coverage-7.3.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.1 kB)\nCollecting docutils==0.20.1 (from -r requirements-dev.txt (line 11))\n  Downloading docutils-0.20.1-py3-none-any.whl.metadata (2.8 kB)\nCollecting exceptiongroup==1.2.0 (from -r requirements-dev.txt (line 12))\n  Downloading exceptiongroup-1.2.0-py3-none-any.whl.metadata (6.6 kB)\nCollecting importlib-metadata==6.8.0 (from -r requirements-dev.txt (line 13))\n  Downloading importlib_metadata-6.8.0-py3-none-any.whl.metadata (5.1 kB)\nCollecting iniconfig==2.0.0 (from -r requirements-dev.txt (line 14))\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting isort==5.12.0 (from -r requirements-dev.txt (line 15))\n  Downloading isort-5.12.0-py3-none-any.whl (91 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 91.2/91.2 kB 19.2 MB/s eta 0:00:00\nCollecting jaraco.classes==3.3.0 (from -r requirements-dev.txt (line 16))\n  Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)\nCollecting keyring==24.3.0 (from -r requirements-dev.txt (line 17))\n  Downloading keyring-24.3.0-py3-none-any.whl.metadata (20 kB)\nCollecting markdown-it-py==3.0.0 (from -r requirements-dev.txt (line 18))\n  Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB)\nCollecting mdurl==0.1.2 (from -r requirements-dev.txt (line 19))\n  Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)\nCollecting more-itertools==10.1.0 (from -r requirements-dev.txt (line 20))\n  Downloading more_itertools-10.1.0-py3-none-any.whl.metadata (33 kB)\nCollecting mypy-extensions==1.0.0 (from -r requirements-dev.txt (line 21))\n  Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB)\nCollecting nh3==0.2.14 (from -r requirements-dev.txt (line 22))\n  Downloading nh3-0.2.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.6 kB)\nCollecting packaging==23.2 (from -r requirements-dev.txt (line 23))\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pathspec==0.11.2 (from -r requirements-dev.txt (line 24))\n  Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)\nCollecting pkginfo==1.9.6 (from -r requirements-dev.txt (line 25))\n  Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)\nCollecting platformdirs==4.0.0 (from -r requirements-dev.txt (line 26))\n  Downloading platformdirs-4.0.0-py3-none-any.whl.metadata (11 kB)\nCollecting pluggy==1.3.0 (from -r requirements-dev.txt (line 27))\n  Downloading pluggy-1.3.0-py3-none-any.whl.metadata (4.3 kB)\nCollecting pprintpp==0.4.0 (from -r requirements-dev.txt (line 28))\n  Downloading pprintpp-0.4.0-py2.py3-none-any.whl (16 kB)\nCollecting pycountry-convert==0.7.2 (from -r requirements-dev.txt (line 29))\n  Downloading pycountry_convert-0.7.2-py3-none-any.whl (13 kB)\nCollecting pycountry==22.3.5 (from -r requirements-dev.txt (line 30))\n  Downloading pycountry-22.3.5.tar.gz (10.1 MB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 10.1/10.1 MB 104.7 MB/s eta 0:00:00\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting pycparser==2.21 (from -r requirements-dev.txt (line 31))\n  Using cached pycparser-2.21-py2.py3-none-any.whl (118 kB)\nCollecting pyflakes==3.1.0 (from -r requirements-dev.txt (line 32))\n  Downloading pyflakes-3.1.0-py2.py3-none-any.whl.metadata (3.5 kB)\nCollecting pyproject_hooks==1.0.0 (from -r requirements-dev.txt (line 33))\n  Downloading pyproject_hooks-1.0.0-py3-none-any.whl (9.3 kB)\nCollecting pytest-cov==4.1.0 (from -r requirements-dev.txt (line 34))\n  Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB)\nCollecting pytest-mock==3.12.0 (from -r requirements-dev.txt (line 35))\n  Downloading pytest_mock-3.12.0-py3-none-any.whl.metadata (3.8 kB)\nCollecting pytest-network==0.0.1 (from -r requirements-dev.txt (line 36))\n  Downloading pytest_network-0.0.1.tar.gz (2.8 kB)\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n  Preparing metadata (pyproject.toml): started\n  Preparing metadata (pyproject.toml): finished with status 'done'\nCollecting pytest==7.4.3 (from -r requirements-dev.txt (line 37))\n  Downloading pytest-7.4.3-py3-none-any.whl.metadata (7.9 kB)\nCollecting readme-renderer==42.0 (from -r requirements-dev.txt (line 38))\n  Downloading readme_renderer-42.0-py3-none-any.whl.metadata (2.8 kB)\nCollecting repoze.lru==0.7 (from -r requirements-dev.txt (line 39))\n  Downloading repoze.lru-0.7-py3-none-any.whl (10 kB)\nCollecting requests-toolbelt==1.0.0 (from -r requirements-dev.txt (line 40))\n  Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 54.5/54.5 kB 15.2 MB/s eta 0:00:00\nCollecting requests==2.31.0 (from -r requirements-dev.txt (line 41))\n  Downloading requests-2.31.0-py3-none-any.whl.metadata (4.6 kB)\nCollecting rfc3986==2.0.0 (from -r requirements-dev.txt (line 42))\n  Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\nCollecting rich==13.7.0 (from -r requirements-dev.txt (line 43))\n  Downloading rich-13.7.0-py3-none-any.whl.metadata (18 kB)\nCollecting tomli==2.0.1 (from -r requirements-dev.txt (line 44))\n  Downloading tomli-2.0.1-py3-none-any.whl (12 kB)\nCollecting twine==4.0.2 (from -r requirements-dev.txt (line 45))\n  Downloading twine-4.0.2-py3-none-any.whl (36 kB)\nCollecting typing_extensions==4.8.0 (from -r requirements-dev.txt (line 46))\n  Downloading typing_extensions-4.8.0-py3-none-any.whl.metadata (3.0 kB)\nCollecting urllib3==2.1.0 (from -r requirements-dev.txt (line 47))\n  Downloading urllib3-2.1.0-py3-none-any.whl.metadata (6.4 kB)\nCollecting zipp==3.17.0 (from -r requirements-dev.txt (line 48))\n  Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)\nCollecting SecretStorage>=3.2 (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2 (from keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)\n     \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 48.4/48.4 kB 13.3 MB/s eta 0:00:00\nCollecting wheel>=0.30.0 (from pycountry-convert==0.7.2->-r requirements-dev.txt (line 29))\n  Using cached wheel-0.42.0-py3-none-any.whl.metadata (2.2 kB)\nCollecting setuptools (from pycountry==22.3.5->-r requirements-dev.txt (line 30))\n  Using cached setuptools-69.0.2-py3-none-any.whl.metadata (6.3 kB)\nRequirement already satisfied: idna<4,>=2.5 in ./env/lib/python3.12/site-packages (from requests==2.31.0->-r requirements-dev.txt (line 41)) (3.4)\nCollecting cryptography>=2.0 (from SecretStorage>=3.2->keyring==24.3.0->-r requirements-dev.txt (line 17))\n  Downloading cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)\nDownloading pygments-2.17.2-py3-none-any.whl (1.2 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.2/1.2 MB 93.6 MB/s eta 0:00:00\nDownloading black-23.11.0-py3-none-any.whl (191 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 192.0/192.0 kB 31.4 MB/s eta 0:00:00\nDownloading build-1.0.3-py3-none-any.whl (18 kB)\nDownloading certifi-2023.11.17-py3-none-any.whl (162 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 162.5/162.5 kB 39.5 MB/s eta 0:00:00\nUsing cached cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477 kB)\nDownloading charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 141.9/141.9 kB 38.7 MB/s eta 0:00:00\nDownloading click-8.1.7-py3-none-any.whl (97 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 97.9/97.9 kB 29.8 MB/s eta 0:00:00\nDownloading coverage-7.3.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (232 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 232.3/232.3 kB 48.7 MB/s eta 0:00:00\nDownloading docutils-0.20.1-py3-none-any.whl (572 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 572.7/572.7 kB 74.1 MB/s eta 0:00:00\nDownloading exceptiongroup-1.2.0-py3-none-any.whl (16 kB)\nDownloading importlib_metadata-6.8.0-py3-none-any.whl (22 kB)\nDownloading jaraco.classes-3.3.0-py3-none-any.whl (5.9 kB)\nDownloading keyring-24.3.0-py3-none-any.whl (38 kB)\nDownloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 87.5/87.5 kB 23.7 MB/s eta 0:00:00\nDownloading more_itertools-10.1.0-py3-none-any.whl (55 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 55.8/55.8 kB 17.8 MB/s eta 0:00:00\nDownloading nh3-0.2.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 1.7/1.7 MB 98.1 MB/s eta 0:00:00\nDownloading packaging-23.2-py3-none-any.whl (53 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 53.0/53.0 kB 16.2 MB/s eta 0:00:00\nDownloading pathspec-0.11.2-py3-none-any.whl (29 kB)\nDownloading platformdirs-4.0.0-py3-none-any.whl (17 kB)\nDownloading pluggy-1.3.0-py3-none-any.whl (18 kB)\nDownloading pyflakes-3.1.0-py2.py3-none-any.whl (62 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 62.6/62.6 kB 21.7 MB/s eta 0:00:00\nDownloading pytest_cov-4.1.0-py3-none-any.whl (21 kB)\nDownloading pytest_mock-3.12.0-py3-none-any.whl (9.8 kB)\nDownloading pytest-7.4.3-py3-none-any.whl (325 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 325.1/325.1 kB 57.9 MB/s eta 0:00:00\nDownloading readme_renderer-42.0-py3-none-any.whl (13 kB)\nDownloading requests-2.31.0-py3-none-any.whl (62 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 62.6/62.6 kB 16.5 MB/s eta 0:00:00\nDownloading rich-13.7.0-py3-none-any.whl (240 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 240.6/240.6 kB 47.6 MB/s eta 0:00:00\nDownloading typing_extensions-4.8.0-py3-none-any.whl (31 kB)\nDownloading urllib3-2.1.0-py3-none-any.whl (104 kB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 104.6/104.6 kB 23.3 MB/s eta 0:00:00\nDownloading zipp-3.17.0-py3-none-any.whl (7.4 kB)\nUsing cached wheel-0.42.0-py3-none-any.whl (65 kB)\nUsing cached setuptools-69.0.2-py3-none-any.whl (819 kB)\nDownloading cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl (4.4 MB)\n   \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 4.4/4.4 MB 107.6 MB/s eta 0:00:00\nBuilding wheels for collected packages: cmarkgfm, pycountry, pytest-network\n  Building wheel for cmarkgfm (pyproject.toml): started\n  Building wheel for cmarkgfm (pyproject.toml): finished with status 'done'\n  Created wheel for cmarkgfm: filename=cmarkgfm-2022.10.27-cp312-cp312-linux_x86_64.whl size=438506 sha256=fdbb533fe00677616961eda92dc6f504f84259d4ff1cc2e0c8c49eb757e59b28\n  Stored in directory: /home/runner/.cache/pip/wheels/6c/1d/0d/bc5293f7edd716c8f7a9b25a5f502bd38e1c55571911c11061\n  Building wheel for pycountry (pyproject.toml): started\n  Building wheel for pycountry (pyproject.toml): finished with status 'done'\n  Created wheel for pycountry: filename=pycountry-22.3.5-py2.py3-none-any.whl size=10681832 sha256=b3b721e2fbf3c359615fd74198aeb99ce8f19c4ba021148a3fd45761cf5b0eac\n  Stored in directory: /home/runner/.cache/pip/wheels/d6/29/9b/b87113e87dc952ca6b3cf003fca8372f7bd12295acf65992eb\n  Building wheel for pytest-network (pyproject.toml): started\n  Building wheel for pytest-network (pyproject.toml): finished with status 'done'\n  Created wheel for pytest-network: filename=pytest_network-0.0.1-py3-none-any.whl size=2960 sha256=994e926858a63d0e463602aa11c5e011a31c647010ee4498f67d409c1c4d53b5\n  Stored in directory: /home/runner/.cache/pip/wheels/e9/6b/5a/3160ef803b88264fbb8882984c076ae87b75c5297a401103e4\nSuccessfully built cmarkgfm pycountry pytest-network\nInstalling collected packages: repoze.lru, pprintpp, nh3, zipp, wheel, urllib3, typing_extensions, tomli, setuptools, rfc3986, pyproject_hooks, Pygments, pyflakes, pycparser, pluggy, platformdirs, pkginfo, pathspec, packaging, mypy-extensions, more-itertools, mdurl, jeepney, isort, iniconfig, exceptiongroup, docutils, coverage, click, charset-normalizer, certifi, requests, readme-renderer, pytest, pycountry, markdown-it-py, jaraco.classes, importlib-metadata, cffi, build, black, rich, requests-toolbelt, pytest-network, pytest-mock, pytest-cov, cryptography, cmarkgfm, SecretStorage, pycountry-convert, keyring, twine\nSuccessfully installed Pygments-2.17.2 SecretStorage-3.3.3 black-23.11.0 build-1.0.3 certifi-2023.11.17 cffi-1.16.0 charset-normalizer-3.3.2 click-8.1.7 cmarkgfm-2022.10.27 coverage-7.3.2 cryptography-41.0.7 docutils-0.20.1 exceptiongroup-1.2.0 importlib-metadata-6.8.0 iniconfig-2.0.0 isort-5.12.0 jaraco.classes-3.3.0 jeepney-0.8.0 keyring-24.3.0 markdown-it-py-3.0.0 mdurl-0.1.2 more-itertools-10.1.0 mypy-extensions-1.0.0 nh3-0.2.14 packaging-23.2 pathspec-0.11.2 pkginfo-1.9.6 platformdirs-4.0.0 pluggy-1.3.0 pprintpp-0.4.0 pycountry-22.3.5 pycountry-convert-0.7.2 pycparser-2.21 pyflakes-3.1.0 pyproject_hooks-1.0.0 pytest-7.4.3 pytest-cov-4.1.0 pytest-mock-3.12.0 pytest-network-0.0.1 readme-renderer-42.0 repoze.lru-0.7 requests-2.31.0 requests-toolbelt-1.0.0 rfc3986-2.0.0 rich-13.7.0 setuptools-69.0.2 tomli-2.0.1 twine-4.0.2 typing_extensions-4.8.0 urllib3-2.1.0 wheel-0.42.0 zipp-3.17.0\n\nSetting blame.ignoreRevsFile to .git-blame-ingore-revs\n\nInstalling pre-commit hook\n\nRun source env/bin/activate to get your shell in to the virtualenv\nSee README.md for more information.\n\n## environment & versions ######################################################\nPython 3.12.1\npip 23.3.1 from /home/runner/work/octodns/octodns/env/lib/python3.12/site-packages/pip (python 3.12)\n## modules: \nblack==23.11.0\nbuild==1.0.3\ncertifi==2023.11.17\ncffi==1.16.0\ncharset-normalizer==3.3.2\nclick==8.1.7\ncmarkgfm==2022.10.27\ncoverage==7.3.2\ncryptography==41.0.7\ndnspython==2.4.2\ndocutils==0.20.1\nexceptiongroup==1.2.0\nfqdn==1.5.1\nidna==3.4\nimportlib-metadata==6.8.0\niniconfig==2.0.0\nisort==5.12.0\njaraco.classes==3.3.0\njeepney==0.8.0\nkeyring==24.3.0\nmarkdown-it-py==3.0.0\nmdurl==0.1.2\nmore-itertools==10.1.0\nmypy-extensions==1.0.0\nnatsort==8.4.0\nnh3==0.2.14\npackaging==23.2\npathspec==0.11.2\npkginfo==1.9.6\nplatformdirs==4.0.0\npluggy==1.3.0\npprintpp==0.4.0\npycountry==22.3.5\npycountry-convert==0.7.2\npycparser==2.21\npyflakes==3.1.0\nPygments==2.17.2\npyproject_hooks==1.0.0\npytest==7.4.3\npytest-cov==4.1.0\npytest-mock==3.12.0\npytest-network==0.0.1\npython-dateutil==2.8.2\nPyYAML==6.0.1\nreadme-renderer==42.0\nrepoze.lru==0.7\nrequests==2.31.0\nrequests-toolbelt==1.0.0\nrfc3986==2.0.0\nrich==13.7.0\nSecretStorage==3.3.3\nsetuptools==69.0.2\nsix==1.16.0\ntomli==2.0.1\ntwine==4.0.2\ntyping_extensions==4.8.0\nurllib3==2.1.0\nwheel==0.42.0\nzipp==3.17.0\n## clean up ####################################################################\n## begin #######################################################################\n## lint ########################################################################\n## formatting ##################################################################\nAll done! \u2728 \ud83c\udf70 \u2728\n110 files would be left unchanged.\n## tests/coverage ##############################################################\n============================= test session starts ==============================\nplatform linux -- Python 3.12.1, pytest-7.4.3, pluggy-1.3.0\nrootdir: /home/runner/work/octodns/octodns\nconfigfile: pyproject.toml\nplugins: mock-3.12.0, network-0.0.1, cov-4.1.0\ncollected 294 items\n\ntests/test_octodns_equality.py ..                                        [  0%]\ntests/test_octodns_idna.py .........                                     [  3%]\ntests/test_octodns_manager.py ...........................F.............. [ 18%]\n                                                                         [ 18%]\ntests/test_octodns_plan.py ..........                                    [ 21%]\ntests/test_octodns_processor_acme.py .                                   [ 21%]\ntests/test_octodns_processor_arpa.py .........                           [ 24%]\ntests/test_octodns_processor_filter.py ................                  [ 30%]\ntests/test_octodns_processor_meta.py ......                              [ 32%]\ntests/test_octodns_processor_ownership.py ...                            [ 33%]\ntests/test_octodns_processor_restrict.py .                               [ 33%]\ntests/test_octodns_processor_spf.py .......                              [ 36%]\ntests/test_octodns_provider_base.py ................................     [ 46%]\ntests/test_octodns_provider_yaml.py ...................                  [ 53%]\ntests/test_octodns_record.py .........................                   [ 61%]\ntests/test_octodns_record_a.py ..                                        [ 62%]\ntests/test_octodns_record_aaaa.py ...                                    [ 63%]\ntests/test_octodns_record_alias.py ...                                   [ 64%]\ntests/test_octodns_record_caa.py ....                                    [ 65%]\ntests/test_octodns_record_change.py ..                                   [ 66%]\ntests/test_octodns_record_chunked.py .                                   [ 67%]\ntests/test_octodns_record_cname.py ...                                   [ 68%]\ntests/test_octodns_record_dname.py ...                                   [ 69%]\ntests/test_octodns_record_ds.py .                                        [ 69%]\ntests/test_octodns_record_dynamic.py ................                    [ 74%]\ntests/test_octodns_record_geo.py .......                                 [ 77%]\ntests/test_octodns_record_ip.py .                                        [ 77%]\ntests/test_octodns_record_loc.py ....                                    [ 78%]\ntests/test_octodns_record_mx.py ....                                     [ 80%]\ntests/test_octodns_record_naptr.py ...                                   [ 81%]\ntests/test_octodns_record_ns.py ...                                      [ 82%]\ntests/test_octodns_record_ptr.py ...                                     [ 83%]\ntests/test_octodns_record_spf.py ..                                      [ 84%]\ntests/test_octodns_record_srv.py ....                                    [ 85%]\ntests/test_octodns_record_sshfp.py ....                                  [ 86%]\ntests/test_octodns_record_target.py .                                    [ 87%]\ntests/test_octodns_record_tlsa.py ...                                    [ 88%]\ntests/test_octodns_record_txt.py ....                                    [ 89%]\ntests/test_octodns_record_urlfwd.py ..                                   [ 90%]\ntests/test_octodns_source_envvar.py ..                                   [ 90%]\ntests/test_octodns_source_tinydns.py .....                               [ 92%]\ntests/test_octodns_yaml.py ..                                            [ 93%]\ntests/test_octodns_zone.py ....................                          [100%]\n\n=================================== FAILURES ===================================\n________________________ TestManager.test_missing_zone _________________________\n\nself = <test_octodns_manager.TestManager testMethod=test_missing_zone>\n\n    def test_missing_zone(self):\n        with self.assertRaises(ManagerException) as ctx:\n            Manager(get_config_filename('dynamic-config.yaml')).sync(\n                ['missing.zones.']\n            )\n>       self.assertTrue('Requested zone:' in str(ctx.exception))\nE       AssertionError: False is not true\n\ntests/test_octodns_manager.py:87: AssertionError\n\n---------- coverage: platform linux, python 3.12.1-final-0 -----------\nName                             Stmts   Miss Branch BrPart  Cover\n------------------------------------------------------------------\noctodns/__init__.py                  1      0      0      0   100%\noctodns/context.py                   4      0      0      0   100%\noctodns/deprecation.py               3      0      0      0   100%\noctodns/equality.py                 15      0      0      0   100%\noctodns/idna.py                     53      0     13      0   100%\noctodns/manager.py                 509      0    195      0   100%\noctodns/processor/__init__.py        0      0      0      0   100%\noctodns/processor/acme.py           22      0      8      0   100%\noctodns/processor/arpa.py           40      0     20      0   100%\noctodns/processor/base.py           13      0      0      0   100%\noctodns/processor/filter.py        134      0     44      0   100%\noctodns/processor/meta.py           48      0     16      0   100%\noctodns/processor/ownership.py      45      0     20      0   100%\noctodns/processor/restrict.py       21      0     10      0   100%\noctodns/processor/spf.py            59      0     24      0   100%\noctodns/provider/__init__.py         4      0      0      0   100%\noctodns/provider/base.py           147      0     68      0   100%\noctodns/provider/plan.py           203      0     61      0   100%\noctodns/provider/yaml.py           177      0     86      0   100%\noctodns/record/__init__.py          73      0      0      0   100%\noctodns/record/a.py                 13      0      0      0   100%\noctodns/record/aaaa.py              13      0      0      0   100%\noctodns/record/alias.py             15      0      4      0   100%\noctodns/record/base.py             268      0    108      0   100%\noctodns/record/caa.py               71      0     32      0   100%\noctodns/record/change.py            28      0      2      0   100%\noctodns/record/chunked.py           49      0     26      0   100%\noctodns/record/cname.py             16      0      4      0   100%\noctodns/record/dname.py              9      0      0      0   100%\noctodns/record/ds.py               121      0     50      0   100%\noctodns/record/dynamic.py          270      0    122      0   100%\noctodns/record/exception.py         17      0      4      0   100%\noctodns/record/geo.py              117      0     50      0   100%\noctodns/record/geo_data.py           1      0      0      0   100%\noctodns/record/ip.py                33      0     18      0   100%\noctodns/record/loc.py              184      0     80      0   100%\noctodns/record/mx.py                88      0     30      0   100%\noctodns/record/naptr.py            109      0     48      0   100%\noctodns/record/ns.py                 8      0      0      0   100%\noctodns/record/ptr.py               11      0      2      0   100%\noctodns/record/rr.py                12      0      0      0   100%\noctodns/record/spf.py               10      0      0      0   100%\noctodns/record/srv.py              117      0     46      0   100%\noctodns/record/sshfp.py             86      0     36      0   100%\noctodns/record/subnet.py            13      0      4      0   100%\noctodns/record/target.py            57      0     36      0   100%\noctodns/record/tlsa.py              97      0     42      0   100%\noctodns/record/txt.py                8      0      0      0   100%\noctodns/record/urlfwd.py            85      0     44      0   100%\noctodns/source/__init__.py           0      0      0      0   100%\noctodns/source/base.py              22      0      8      0   100%\noctodns/source/envvar.py            36      0      2      0   100%\noctodns/source/tinydns.py          239      0    122      0   100%\noctodns/yaml.py                     48      0      8      0   100%\noctodns/zone.py                    168      0     90      0   100%\n------------------------------------------------------------------\nTOTAL                             4010      0   1583      0   100%\nCoverage HTML written to dir htmlcov\nCoverage XML written to file coverage.xml\n\nRequired test coverage of 100% reached. Total coverage: 100.00%\n=========================== short test summary info ============================\nFAILED tests/test_octodns_manager.py::TestManager::test_missing_zone - AssertionError: False is not true\n======================== 1 failed, 293 passed in 7.61s =========================\n##[error]Process completed with exit code 1.\n"}], "diff": "diff --git a/tests/test_octodns_manager.py b/tests/test_octodns_manager.py\nindex b8f3c92..b93c9b8 100644\n--- a/tests/test_octodns_manager.py\n+++ b/tests/test_octodns_manager.py\n@@ -84,7 +84,7 @@ class TestManager(TestCase):\n             Manager(get_config_filename('dynamic-config.yaml')).sync(\n                 ['missing.zones.']\n             )\n-        self.assertTrue('Requested zone:' in str(ctx.exception))\n+        self.assertTrue('Requested zone ' in str(ctx.exception))\n \n     def test_missing_targets(self):\n         with self.assertRaises(ManagerException) as ctx:\n", "difficulty": 3, "changed_files": ["tests/test_octodns_manager.py"], "commit_link": "https://github.com/octodns/octodns/tree/9e1aa7b8edfb723656f41f97bab57f9a653d5e1b"}