File size: 126,101 Bytes
8f0a8fd
1
{"language": "Python", "id": 16, "repo_owner": "octodns", "repo_name": "octodns", "head_branch": "filter-net", "workflow_name": "OctoDNS", "workflow_filename": "main.yml", "workflow_path": ".github/workflows/main.yml", "contributor": "Solvik", "sha_fail": "3ed7a88e343c89b7153efea25db1b6287b2f0823", "sha_success": "abdab8f6d83894e9f37eb3213efa828dfc741cd0", "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": "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 11.8 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.16.1 (from -r requirements-dev.txt (line 2))\n  Downloading Pygments-2.16.1-py3-none-any.whl.metadata (2.5 kB)\nCollecting black==23.9.1 (from -r requirements-dev.txt (line 3))\n  Downloading black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (65 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 65.1/65.1 kB 2.7 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.7.22 (from -r requirements-dev.txt (line 5))\n  Downloading certifi-2023.7.22-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.0 (from -r requirements-dev.txt (line 7))\n  Downloading charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (32 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\u2501 435.2/435.2 kB 9.4 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 importlib-metadata==6.8.0 (from -r requirements-dev.txt (line 12))\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 13))\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting isort==5.12.0 (from -r requirements-dev.txt (line 14))\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 8.6 MB/s eta 0:00:00\nCollecting jaraco.classes==3.3.0 (from -r requirements-dev.txt (line 15))\n  Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)\nCollecting keyring==24.2.0 (from -r requirements-dev.txt (line 16))\n  Downloading keyring-24.2.0-py3-none-any.whl.metadata (20 kB)\nCollecting markdown-it-py==3.0.0 (from -r requirements-dev.txt (line 17))\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 18))\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 19))\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 20))\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 21))\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 22))\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pathspec==0.11.2 (from -r requirements-dev.txt (line 23))\n  Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)\nCollecting pkginfo==1.9.6 (from -r requirements-dev.txt (line 24))\n  Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)\nCollecting platformdirs==3.11.0 (from -r requirements-dev.txt (line 25))\n  Using cached platformdirs-3.11.0-py3-none-any.whl.metadata (11 kB)\nCollecting pluggy==1.3.0 (from -r requirements-dev.txt (line 26))\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 27))\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 28))\n  Downloading pycountry_convert-0.7.2-py3-none-any.whl (13 kB)\nCollecting pycountry==22.3.5 (from -r requirements-dev.txt (line 29))\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 30.0 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 30))\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 34.5 MB/s eta 0:00:00\nCollecting pyflakes==3.1.0 (from -r requirements-dev.txt (line 31))\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 32))\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 33))\n  Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB)\nCollecting pytest-mock==3.11.1 (from -r requirements-dev.txt (line 34))\n  Downloading pytest_mock-3.11.1-py3-none-any.whl.metadata (3.8 kB)\nCollecting pytest-network==0.0.1 (from -r requirements-dev.txt (line 35))\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.2 (from -r requirements-dev.txt (line 36))\n  Downloading pytest-7.4.2-py3-none-any.whl.metadata (7.9 kB)\nCollecting readme-renderer==42.0 (from -r requirements-dev.txt (line 37))\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 38))\n  Downloading repoze.lru-0.7-py3-none-any.whl (10 kB)\nCollecting requests-toolbelt==1.0.0 (from -r requirements-dev.txt (line 39))\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 11.3 MB/s eta 0:00:00\nCollecting requests==2.31.0 (from -r requirements-dev.txt (line 40))\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 41))\n  Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\nCollecting rich==13.6.0 (from -r requirements-dev.txt (line 42))\n  Downloading rich-13.6.0-py3-none-any.whl.metadata (18 kB)\nCollecting setuptools==68.2.2 (from -r requirements-dev.txt (line 43))\n  Using cached setuptools-68.2.2-py3-none-any.whl.metadata (6.3 kB)\nCollecting twine==4.0.2 (from -r requirements-dev.txt (line 44))\n  Downloading twine-4.0.2-py3-none-any.whl (36 kB)\nCollecting urllib3==2.0.6 (from -r requirements-dev.txt (line 45))\n  Downloading urllib3-2.0.6-py3-none-any.whl.metadata (6.6 kB)\nCollecting wheel==0.41.2 (from -r requirements-dev.txt (line 46))\n  Downloading wheel-0.41.2-py3-none-any.whl.metadata (2.2 kB)\nCollecting zipp==3.17.0 (from -r requirements-dev.txt (line 47))\n  Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)\nCollecting tomli>=1.1.0 (from black==23.9.1->-r requirements-dev.txt (line 3))\n  Downloading tomli-2.0.1-py3-none-any.whl (12 kB)\nCollecting typing-extensions>=4.0.1 (from black==23.9.1->-r requirements-dev.txt (line 3))\n  Downloading typing_extensions-4.8.0-py3-none-any.whl.metadata (3.0 kB)\nCollecting importlib-resources (from keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading importlib_resources-6.1.1-py3-none-any.whl.metadata (4.1 kB)\nCollecting SecretStorage>=3.2 (from keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2 (from keyring==24.2.0->-r requirements-dev.txt (line 16))\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 11.8 MB/s eta 0:00:00\nCollecting exceptiongroup>=1.0.0rc8 (from pytest==7.4.2->-r requirements-dev.txt (line 36))\n  Downloading exceptiongroup-1.1.3-py3-none-any.whl.metadata (6.1 kB)\nRequirement already satisfied: idna<4,>=2.5 in ./env/lib/python3.8/site-packages (from requests==2.31.0->-r requirements-dev.txt (line 40)) (3.4)\nCollecting cryptography>=2.0 (from SecretStorage>=3.2->keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading cryptography-41.0.5-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)\nDownloading Pygments-2.16.1-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 60.2 MB/s eta 0:00:00\nDownloading black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 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.6/1.6 MB 64.8 MB/s eta 0:00:00\nDownloading build-1.0.3-py3-none-any.whl (18 kB)\nDownloading certifi-2023.7.22-py3-none-any.whl (158 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 158.3/158.3 kB 43.2 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 71.3 MB/s eta 0:00:00\nDownloading charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (137 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 137.9/137.9 kB 25.2 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 24.1 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 49.3 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.0 MB/s eta 0:00:00\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.2.0-py3-none-any.whl (37 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 21.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 14.5 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 66.9 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 13.0 MB/s eta 0:00:00\nDownloading pathspec-0.11.2-py3-none-any.whl (29 kB)\nUsing cached platformdirs-3.11.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 18.0 MB/s eta 0:00:00\nDownloading pytest_cov-4.1.0-py3-none-any.whl (21 kB)\nDownloading pytest_mock-3.11.1-py3-none-any.whl (9.6 kB)\nDownloading pytest-7.4.2-py3-none-any.whl (324 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 324.5/324.5 kB 60.3 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.1 MB/s eta 0:00:00\nDownloading rich-13.6.0-py3-none-any.whl (239 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 239.8/239.8 kB 46.2 MB/s eta 0:00:00\nUsing cached setuptools-68.2.2-py3-none-any.whl (807 kB)\nDownloading urllib3-2.0.6-py3-none-any.whl (123 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 123.8/123.8 kB 25.2 MB/s eta 0:00:00\nDownloading wheel-0.41.2-py3-none-any.whl (64 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 64.8/64.8 kB 18.6 MB/s eta 0:00:00\nDownloading zipp-3.17.0-py3-none-any.whl (7.4 kB)\nDownloading exceptiongroup-1.1.3-py3-none-any.whl (14 kB)\nDownloading typing_extensions-4.8.0-py3-none-any.whl (31 kB)\nDownloading importlib_resources-6.1.1-py3-none-any.whl (33 kB)\nDownloading cryptography-41.0.5-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 84.3 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=50e08295a7b3edcc3949af1e9a6fcde707adb5e09e575717c1095da017207362\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=2959 sha256=0fa1b1878ac03ea40a2b3954fa1058e9ae30ea9240de5a4b67362b84293139f9\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, setuptools, rfc3986, 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, pyproject_hooks, pycountry, 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\n  Attempting uninstall: setuptools\n    Found existing installation: setuptools 56.0.0\n    Uninstalling setuptools-56.0.0:\n      Successfully uninstalled setuptools-56.0.0\nSuccessfully installed Pygments-2.16.1 SecretStorage-3.3.3 black-23.9.1 build-1.0.3 certifi-2023.7.22 cffi-1.16.0 charset-normalizer-3.3.0 click-8.1.7 cmarkgfm-2022.10.27 coverage-7.3.2 cryptography-41.0.5 docutils-0.20.1 exceptiongroup-1.1.3 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.2.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-3.11.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.2 pytest-cov-4.1.0 pytest-mock-3.11.1 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.6.0 setuptools-68.2.2 tomli-2.0.1 twine-4.0.2 typing-extensions-4.8.0 urllib3-2.0.6 wheel-0.41.2 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.9.1\nbuild==1.0.3\ncertifi==2023.7.22\ncffi==1.16.0\ncharset-normalizer==3.3.0\nclick==8.1.7\ncmarkgfm==2022.10.27\ncoverage==7.3.2\ncryptography==41.0.5\ndnspython==2.4.2\ndocutils==0.20.1\nexceptiongroup==1.1.3\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.2.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==3.11.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.16.1\npyproject_hooks==1.0.0\npytest==7.4.2\npytest-cov==4.1.0\npytest-mock==3.11.1\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.6.0\nSecretStorage==3.3.3\nsix==1.16.0\ntomli==2.0.1\ntwine==4.0.2\ntyping_extensions==4.8.0\nurllib3==2.0.6\nzipp==3.17.0\n## clean up ####################################################################\n## begin #######################################################################\n## lint ########################################################################\ntests/test_octodns_processor_filter.py:199:13: local variable 'filter_private' is assigned to but never used\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 19.7 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.16.1 (from -r requirements-dev.txt (line 2))\n  Downloading Pygments-2.16.1-py3-none-any.whl.metadata (2.5 kB)\nCollecting black==23.9.1 (from -r requirements-dev.txt (line 3))\n  Downloading black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (65 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 65.1/65.1 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.7.22 (from -r requirements-dev.txt (line 5))\n  Downloading certifi-2023.7.22-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.0 (from -r requirements-dev.txt (line 7))\n  Downloading charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (32 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 435.0/435.0 kB 10.8 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 importlib-metadata==6.8.0 (from -r requirements-dev.txt (line 12))\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 13))\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting isort==5.12.0 (from -r requirements-dev.txt (line 14))\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 11.5 MB/s eta 0:00:00\nCollecting jaraco.classes==3.3.0 (from -r requirements-dev.txt (line 15))\n  Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)\nCollecting keyring==24.2.0 (from -r requirements-dev.txt (line 16))\n  Downloading keyring-24.2.0-py3-none-any.whl.metadata (20 kB)\nCollecting markdown-it-py==3.0.0 (from -r requirements-dev.txt (line 17))\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 18))\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 19))\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 20))\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 21))\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 22))\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pathspec==0.11.2 (from -r requirements-dev.txt (line 23))\n  Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)\nCollecting pkginfo==1.9.6 (from -r requirements-dev.txt (line 24))\n  Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)\nCollecting platformdirs==3.11.0 (from -r requirements-dev.txt (line 25))\n  Using cached platformdirs-3.11.0-py3-none-any.whl.metadata (11 kB)\nCollecting pluggy==1.3.0 (from -r requirements-dev.txt (line 26))\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 27))\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 28))\n  Downloading pycountry_convert-0.7.2-py3-none-any.whl (13 kB)\nCollecting pycountry==22.3.5 (from -r requirements-dev.txt (line 29))\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 38.1 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 30))\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 35.2 MB/s eta 0:00:00\nCollecting pyflakes==3.1.0 (from -r requirements-dev.txt (line 31))\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 32))\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 33))\n  Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB)\nCollecting pytest-mock==3.11.1 (from -r requirements-dev.txt (line 34))\n  Downloading pytest_mock-3.11.1-py3-none-any.whl.metadata (3.8 kB)\nCollecting pytest-network==0.0.1 (from -r requirements-dev.txt (line 35))\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.2 (from -r requirements-dev.txt (line 36))\n  Downloading pytest-7.4.2-py3-none-any.whl.metadata (7.9 kB)\nCollecting readme-renderer==42.0 (from -r requirements-dev.txt (line 37))\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 38))\n  Downloading repoze.lru-0.7-py3-none-any.whl (10 kB)\nCollecting requests-toolbelt==1.0.0 (from -r requirements-dev.txt (line 39))\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 17.5 MB/s eta 0:00:00\nCollecting requests==2.31.0 (from -r requirements-dev.txt (line 40))\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 41))\n  Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\nCollecting rich==13.6.0 (from -r requirements-dev.txt (line 42))\n  Downloading rich-13.6.0-py3-none-any.whl.metadata (18 kB)\nCollecting setuptools==68.2.2 (from -r requirements-dev.txt (line 43))\n  Using cached setuptools-68.2.2-py3-none-any.whl.metadata (6.3 kB)\nCollecting twine==4.0.2 (from -r requirements-dev.txt (line 44))\n  Downloading twine-4.0.2-py3-none-any.whl (36 kB)\nCollecting urllib3==2.0.6 (from -r requirements-dev.txt (line 45))\n  Downloading urllib3-2.0.6-py3-none-any.whl.metadata (6.6 kB)\nCollecting wheel==0.41.2 (from -r requirements-dev.txt (line 46))\n  Downloading wheel-0.41.2-py3-none-any.whl.metadata (2.2 kB)\nCollecting zipp==3.17.0 (from -r requirements-dev.txt (line 47))\n  Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)\nCollecting tomli>=1.1.0 (from black==23.9.1->-r requirements-dev.txt (line 3))\n  Downloading tomli-2.0.1-py3-none-any.whl (12 kB)\nCollecting typing-extensions>=4.0.1 (from black==23.9.1->-r requirements-dev.txt (line 3))\n  Downloading typing_extensions-4.8.0-py3-none-any.whl.metadata (3.0 kB)\nCollecting SecretStorage>=3.2 (from keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2 (from keyring==24.2.0->-r requirements-dev.txt (line 16))\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 16.1 MB/s eta 0:00:00\nCollecting exceptiongroup>=1.0.0rc8 (from pytest==7.4.2->-r requirements-dev.txt (line 36))\n  Downloading exceptiongroup-1.1.3-py3-none-any.whl.metadata (6.1 kB)\nRequirement already satisfied: idna<4,>=2.5 in ./env/lib/python3.9/site-packages (from requests==2.31.0->-r requirements-dev.txt (line 40)) (3.4)\nCollecting cryptography>=2.0 (from SecretStorage>=3.2->keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading cryptography-41.0.5-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)\nDownloading Pygments-2.16.1-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 79.7 MB/s eta 0:00:00\nDownloading black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 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.6/1.6 MB 81.5 MB/s eta 0:00:00\nDownloading build-1.0.3-py3-none-any.whl (18 kB)\nDownloading certifi-2023.7.22-py3-none-any.whl (158 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 158.3/158.3 kB 39.6 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 74.5 MB/s eta 0:00:00\nDownloading charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138 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 139.0/139.0 kB 27.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 27.1 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 44.3 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 76.0 MB/s eta 0:00:00\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.2.0-py3-none-any.whl (37 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.0 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 13.0 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 85.6 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 14.6 MB/s eta 0:00:00\nDownloading pathspec-0.11.2-py3-none-any.whl (29 kB)\nUsing cached platformdirs-3.11.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 18.7 MB/s eta 0:00:00\nDownloading pytest_cov-4.1.0-py3-none-any.whl (21 kB)\nDownloading pytest_mock-3.11.1-py3-none-any.whl (9.6 kB)\nDownloading pytest-7.4.2-py3-none-any.whl (324 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 324.5/324.5 kB 63.6 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 18.6 MB/s eta 0:00:00\nDownloading rich-13.6.0-py3-none-any.whl (239 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 239.8/239.8 kB 36.1 MB/s eta 0:00:00\nUsing cached setuptools-68.2.2-py3-none-any.whl (807 kB)\nDownloading urllib3-2.0.6-py3-none-any.whl (123 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 123.8/123.8 kB 30.3 MB/s eta 0:00:00\nDownloading wheel-0.41.2-py3-none-any.whl (64 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 64.8/64.8 kB 18.7 MB/s eta 0:00:00\nDownloading zipp-3.17.0-py3-none-any.whl (7.4 kB)\nDownloading exceptiongroup-1.1.3-py3-none-any.whl (14 kB)\nDownloading typing_extensions-4.8.0-py3-none-any.whl (31 kB)\nDownloading cryptography-41.0.5-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 105.2 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=67969fc94bc21f66c451a4f9aca63f622127f5d9251f50eab636ccc0b9de647d\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=2959 sha256=53b635012eaef307a62a331d62218923059a89f3603d065bcc9305e972e30505\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, setuptools, rfc3986, 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, pyproject_hooks, pycountry, 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\n  Attempting uninstall: setuptools\n    Found existing installation: setuptools 58.1.0\n    Uninstalling setuptools-58.1.0:\n      Successfully uninstalled setuptools-58.1.0\nSuccessfully installed Pygments-2.16.1 SecretStorage-3.3.3 black-23.9.1 build-1.0.3 certifi-2023.7.22 cffi-1.16.0 charset-normalizer-3.3.0 click-8.1.7 cmarkgfm-2022.10.27 coverage-7.3.2 cryptography-41.0.5 docutils-0.20.1 exceptiongroup-1.1.3 importlib-metadata-6.8.0 iniconfig-2.0.0 isort-5.12.0 jaraco.classes-3.3.0 jeepney-0.8.0 keyring-24.2.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-3.11.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.2 pytest-cov-4.1.0 pytest-mock-3.11.1 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.6.0 setuptools-68.2.2 tomli-2.0.1 twine-4.0.2 typing-extensions-4.8.0 urllib3-2.0.6 wheel-0.41.2 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.9.1\nbuild==1.0.3\ncertifi==2023.7.22\ncffi==1.16.0\ncharset-normalizer==3.3.0\nclick==8.1.7\ncmarkgfm==2022.10.27\ncoverage==7.3.2\ncryptography==41.0.5\ndnspython==2.4.2\ndocutils==0.20.1\nexceptiongroup==1.1.3\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.2.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==3.11.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.16.1\npyproject_hooks==1.0.0\npytest==7.4.2\npytest-cov==4.1.0\npytest-mock==3.11.1\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.6.0\nSecretStorage==3.3.3\nsix==1.16.0\ntomli==2.0.1\ntwine==4.0.2\ntyping_extensions==4.8.0\nurllib3==2.0.6\nzipp==3.17.0\n## clean up ####################################################################\n## begin #######################################################################\n## lint ########################################################################\ntests/test_octodns_processor_filter.py:199:13: local variable 'filter_private' is assigned to but never used\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 40.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-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.16.1 (from -r requirements-dev.txt (line 2))\n  Downloading Pygments-2.16.1-py3-none-any.whl.metadata (2.5 kB)\nCollecting black==23.9.1 (from -r requirements-dev.txt (line 3))\n  Downloading black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (65 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 65.1/65.1 kB 3.6 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.7.22 (from -r requirements-dev.txt (line 5))\n  Downloading certifi-2023.7.22-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.0 (from -r requirements-dev.txt (line 7))\n  Downloading charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (32 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 37.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-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 importlib-metadata==6.8.0 (from -r requirements-dev.txt (line 12))\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 13))\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting isort==5.12.0 (from -r requirements-dev.txt (line 14))\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 27.0 MB/s eta 0:00:00\nCollecting jaraco.classes==3.3.0 (from -r requirements-dev.txt (line 15))\n  Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)\nCollecting keyring==24.2.0 (from -r requirements-dev.txt (line 16))\n  Downloading keyring-24.2.0-py3-none-any.whl.metadata (20 kB)\nCollecting markdown-it-py==3.0.0 (from -r requirements-dev.txt (line 17))\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 18))\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 19))\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 20))\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 21))\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 22))\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pathspec==0.11.2 (from -r requirements-dev.txt (line 23))\n  Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)\nCollecting pkginfo==1.9.6 (from -r requirements-dev.txt (line 24))\n  Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)\nCollecting platformdirs==3.11.0 (from -r requirements-dev.txt (line 25))\n  Using cached platformdirs-3.11.0-py3-none-any.whl.metadata (11 kB)\nCollecting pluggy==1.3.0 (from -r requirements-dev.txt (line 26))\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 27))\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 28))\n  Downloading pycountry_convert-0.7.2-py3-none-any.whl (13 kB)\nCollecting pycountry==22.3.5 (from -r requirements-dev.txt (line 29))\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 102.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 30))\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.3 MB/s eta 0:00:00\nCollecting pyflakes==3.1.0 (from -r requirements-dev.txt (line 31))\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 32))\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 33))\n  Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB)\nCollecting pytest-mock==3.11.1 (from -r requirements-dev.txt (line 34))\n  Downloading pytest_mock-3.11.1-py3-none-any.whl.metadata (3.8 kB)\nCollecting pytest-network==0.0.1 (from -r requirements-dev.txt (line 35))\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.2 (from -r requirements-dev.txt (line 36))\n  Downloading pytest-7.4.2-py3-none-any.whl.metadata (7.9 kB)\nCollecting readme-renderer==42.0 (from -r requirements-dev.txt (line 37))\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 38))\n  Downloading repoze.lru-0.7-py3-none-any.whl (10 kB)\nCollecting requests-toolbelt==1.0.0 (from -r requirements-dev.txt (line 39))\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 40))\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 41))\n  Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\nCollecting rich==13.6.0 (from -r requirements-dev.txt (line 42))\n  Downloading rich-13.6.0-py3-none-any.whl.metadata (18 kB)\nCollecting setuptools==68.2.2 (from -r requirements-dev.txt (line 43))\n  Using cached setuptools-68.2.2-py3-none-any.whl.metadata (6.3 kB)\nCollecting twine==4.0.2 (from -r requirements-dev.txt (line 44))\n  Downloading twine-4.0.2-py3-none-any.whl (36 kB)\nCollecting urllib3==2.0.6 (from -r requirements-dev.txt (line 45))\n  Downloading urllib3-2.0.6-py3-none-any.whl.metadata (6.6 kB)\nCollecting wheel==0.41.2 (from -r requirements-dev.txt (line 46))\n  Downloading wheel-0.41.2-py3-none-any.whl.metadata (2.2 kB)\nCollecting zipp==3.17.0 (from -r requirements-dev.txt (line 47))\n  Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)\nCollecting tomli>=1.1.0 (from black==23.9.1->-r requirements-dev.txt (line 3))\n  Downloading tomli-2.0.1-py3-none-any.whl (12 kB)\nCollecting typing-extensions>=4.0.1 (from black==23.9.1->-r requirements-dev.txt (line 3))\n  Downloading typing_extensions-4.8.0-py3-none-any.whl.metadata (3.0 kB)\nCollecting SecretStorage>=3.2 (from keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2 (from keyring==24.2.0->-r requirements-dev.txt (line 16))\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 16.6 MB/s eta 0:00:00\nCollecting exceptiongroup>=1.0.0rc8 (from pytest==7.4.2->-r requirements-dev.txt (line 36))\n  Downloading exceptiongroup-1.1.3-py3-none-any.whl.metadata (6.1 kB)\nRequirement already satisfied: idna<4,>=2.5 in ./env/lib/python3.10/site-packages (from requests==2.31.0->-r requirements-dev.txt (line 40)) (3.4)\nCollecting cryptography>=2.0 (from SecretStorage>=3.2->keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading cryptography-41.0.5-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)\nDownloading Pygments-2.16.1-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.9 MB/s eta 0:00:00\nDownloading black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 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.6/1.6 MB 109.5 MB/s eta 0:00:00\nDownloading build-1.0.3-py3-none-any.whl (18 kB)\nDownloading certifi-2023.7.22-py3-none-any.whl (158 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 158.3/158.3 kB 43.2 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 78.5 MB/s eta 0:00:00\nDownloading charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138 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 138.7/138.7 kB 41.5 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 33.1 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 51.4 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 85.4 MB/s eta 0:00:00\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.2.0-py3-none-any.whl (37 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.1 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.0 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 107.2 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 17.1 MB/s eta 0:00:00\nDownloading pathspec-0.11.2-py3-none-any.whl (29 kB)\nUsing cached platformdirs-3.11.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 18.2 MB/s eta 0:00:00\nDownloading pytest_cov-4.1.0-py3-none-any.whl (21 kB)\nDownloading pytest_mock-3.11.1-py3-none-any.whl (9.6 kB)\nDownloading pytest-7.4.2-py3-none-any.whl (324 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 324.5/324.5 kB 70.1 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.6 MB/s eta 0:00:00\nDownloading rich-13.6.0-py3-none-any.whl (239 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 239.8/239.8 kB 55.8 MB/s eta 0:00:00\nUsing cached setuptools-68.2.2-py3-none-any.whl (807 kB)\nDownloading urllib3-2.0.6-py3-none-any.whl (123 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 123.8/123.8 kB 35.7 MB/s eta 0:00:00\nDownloading wheel-0.41.2-py3-none-any.whl (64 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 64.8/64.8 kB 22.1 MB/s eta 0:00:00\nDownloading zipp-3.17.0-py3-none-any.whl (7.4 kB)\nDownloading exceptiongroup-1.1.3-py3-none-any.whl (14 kB)\nDownloading typing_extensions-4.8.0-py3-none-any.whl (31 kB)\nDownloading cryptography-41.0.5-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 109.2 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=67969fc94bc21f66c451a4f9aca63f622127f5d9251f50eab636ccc0b9de647d\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=2959 sha256=53b635012eaef307a62a331d62218923059a89f3603d065bcc9305e972e30505\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, setuptools, rfc3986, 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, pyproject_hooks, pycountry, 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\n  Attempting uninstall: setuptools\n    Found existing installation: setuptools 65.5.0\n    Uninstalling setuptools-65.5.0:\n      Successfully uninstalled setuptools-65.5.0\nSuccessfully installed Pygments-2.16.1 SecretStorage-3.3.3 black-23.9.1 build-1.0.3 certifi-2023.7.22 cffi-1.16.0 charset-normalizer-3.3.0 click-8.1.7 cmarkgfm-2022.10.27 coverage-7.3.2 cryptography-41.0.5 docutils-0.20.1 exceptiongroup-1.1.3 importlib-metadata-6.8.0 iniconfig-2.0.0 isort-5.12.0 jaraco.classes-3.3.0 jeepney-0.8.0 keyring-24.2.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-3.11.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.2 pytest-cov-4.1.0 pytest-mock-3.11.1 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.6.0 setuptools-68.2.2 tomli-2.0.1 twine-4.0.2 typing-extensions-4.8.0 urllib3-2.0.6 wheel-0.41.2 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.9.1\nbuild==1.0.3\ncertifi==2023.7.22\ncffi==1.16.0\ncharset-normalizer==3.3.0\nclick==8.1.7\ncmarkgfm==2022.10.27\ncoverage==7.3.2\ncryptography==41.0.5\ndnspython==2.4.2\ndocutils==0.20.1\nexceptiongroup==1.1.3\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.2.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==3.11.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.16.1\npyproject_hooks==1.0.0\npytest==7.4.2\npytest-cov==4.1.0\npytest-mock==3.11.1\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.6.0\nSecretStorage==3.3.3\nsix==1.16.0\ntomli==2.0.1\ntwine==4.0.2\ntyping_extensions==4.8.0\nurllib3==2.0.6\nzipp==3.17.0\n## clean up ####################################################################\n## begin #######################################################################\n## lint ########################################################################\ntests/test_octodns_processor_filter.py:199:13: local variable 'filter_private' is assigned to but never used\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.6/x64\n  PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.11.6/x64/lib/pkgconfig\n  Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.6/x64\n  Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.6/x64\n  Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.6/x64\n  LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.11.6/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 13.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.16.1 (from -r requirements-dev.txt (line 2))\n  Downloading Pygments-2.16.1-py3-none-any.whl.metadata (2.5 kB)\nCollecting black==23.9.1 (from -r requirements-dev.txt (line 3))\n  Downloading black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (65 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 65.1/65.1 kB 2.0 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.7.22 (from -r requirements-dev.txt (line 5))\n  Downloading certifi-2023.7.22-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.0 (from -r requirements-dev.txt (line 7))\n  Downloading charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (32 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\u2501 435.0/435.0 kB 7.7 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 importlib-metadata==6.8.0 (from -r requirements-dev.txt (line 12))\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 13))\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting isort==5.12.0 (from -r requirements-dev.txt (line 14))\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 6.9 MB/s eta 0:00:00\nCollecting jaraco.classes==3.3.0 (from -r requirements-dev.txt (line 15))\n  Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)\nCollecting keyring==24.2.0 (from -r requirements-dev.txt (line 16))\n  Downloading keyring-24.2.0-py3-none-any.whl.metadata (20 kB)\nCollecting markdown-it-py==3.0.0 (from -r requirements-dev.txt (line 17))\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 18))\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 19))\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 20))\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 21))\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 22))\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pathspec==0.11.2 (from -r requirements-dev.txt (line 23))\n  Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)\nCollecting pkginfo==1.9.6 (from -r requirements-dev.txt (line 24))\n  Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)\nCollecting platformdirs==3.11.0 (from -r requirements-dev.txt (line 25))\n  Using cached platformdirs-3.11.0-py3-none-any.whl.metadata (11 kB)\nCollecting pluggy==1.3.0 (from -r requirements-dev.txt (line 26))\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 27))\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 28))\n  Downloading pycountry_convert-0.7.2-py3-none-any.whl (13 kB)\nCollecting pycountry==22.3.5 (from -r requirements-dev.txt (line 29))\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 25.1 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 30))\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 21.7 MB/s eta 0:00:00\nCollecting pyflakes==3.1.0 (from -r requirements-dev.txt (line 31))\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 32))\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 33))\n  Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB)\nCollecting pytest-mock==3.11.1 (from -r requirements-dev.txt (line 34))\n  Downloading pytest_mock-3.11.1-py3-none-any.whl.metadata (3.8 kB)\nCollecting pytest-network==0.0.1 (from -r requirements-dev.txt (line 35))\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.2 (from -r requirements-dev.txt (line 36))\n  Downloading pytest-7.4.2-py3-none-any.whl.metadata (7.9 kB)\nCollecting readme-renderer==42.0 (from -r requirements-dev.txt (line 37))\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 38))\n  Downloading repoze.lru-0.7-py3-none-any.whl (10 kB)\nCollecting requests-toolbelt==1.0.0 (from -r requirements-dev.txt (line 39))\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 8.9 MB/s eta 0:00:00\nCollecting requests==2.31.0 (from -r requirements-dev.txt (line 40))\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 41))\n  Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\nCollecting rich==13.6.0 (from -r requirements-dev.txt (line 42))\n  Downloading rich-13.6.0-py3-none-any.whl.metadata (18 kB)\nCollecting setuptools==68.2.2 (from -r requirements-dev.txt (line 43))\n  Using cached setuptools-68.2.2-py3-none-any.whl.metadata (6.3 kB)\nCollecting twine==4.0.2 (from -r requirements-dev.txt (line 44))\n  Downloading twine-4.0.2-py3-none-any.whl (36 kB)\nCollecting urllib3==2.0.6 (from -r requirements-dev.txt (line 45))\n  Downloading urllib3-2.0.6-py3-none-any.whl.metadata (6.6 kB)\nCollecting wheel==0.41.2 (from -r requirements-dev.txt (line 46))\n  Downloading wheel-0.41.2-py3-none-any.whl.metadata (2.2 kB)\nCollecting zipp==3.17.0 (from -r requirements-dev.txt (line 47))\n  Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)\nCollecting SecretStorage>=3.2 (from keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2 (from keyring==24.2.0->-r requirements-dev.txt (line 16))\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 9.0 MB/s eta 0:00:00\nRequirement already satisfied: idna<4,>=2.5 in ./env/lib/python3.11/site-packages (from requests==2.31.0->-r requirements-dev.txt (line 40)) (3.4)\nCollecting cryptography>=2.0 (from SecretStorage>=3.2->keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading cryptography-41.0.5-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)\nDownloading Pygments-2.16.1-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 46.5 MB/s eta 0:00:00\nDownloading black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 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.6/1.6 MB 39.7 MB/s eta 0:00:00\nDownloading build-1.0.3-py3-none-any.whl (18 kB)\nDownloading certifi-2023.7.22-py3-none-any.whl (158 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 158.3/158.3 kB 27.3 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 49.5 MB/s eta 0:00:00\nDownloading charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (137 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 137.1/137.1 kB 22.6 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 18.5 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 36.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 58.1 MB/s eta 0:00:00\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.2.0-py3-none-any.whl (37 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 18.0 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 9.9 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 57.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 9.1 MB/s eta 0:00:00\nDownloading pathspec-0.11.2-py3-none-any.whl (29 kB)\nUsing cached platformdirs-3.11.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 13.0 MB/s eta 0:00:00\nDownloading pytest_cov-4.1.0-py3-none-any.whl (21 kB)\nDownloading pytest_mock-3.11.1-py3-none-any.whl (9.6 kB)\nDownloading pytest-7.4.2-py3-none-any.whl (324 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 324.5/324.5 kB 45.7 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 12.1 MB/s eta 0:00:00\nDownloading rich-13.6.0-py3-none-any.whl (239 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 239.8/239.8 kB 36.2 MB/s eta 0:00:00\nUsing cached setuptools-68.2.2-py3-none-any.whl (807 kB)\nDownloading urllib3-2.0.6-py3-none-any.whl (123 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 123.8/123.8 kB 22.3 MB/s eta 0:00:00\nDownloading wheel-0.41.2-py3-none-any.whl (64 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 64.8/64.8 kB 12.7 MB/s eta 0:00:00\nDownloading zipp-3.17.0-py3-none-any.whl (7.4 kB)\nDownloading cryptography-41.0.5-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 58.7 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=5a175d6e91d868a15a3558d72c3b0fa0435af91b40f7d5bb2756ee4b5d6582ea\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=2959 sha256=fed6a8d1c4975562b48cfd776b8d3372299fb8284e39f18f27e339aeb956a84d\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, setuptools, rfc3986, pyproject_hooks, Pygments, pyflakes, pycparser, pluggy, platformdirs, pkginfo, pathspec, packaging, mypy-extensions, more-itertools, mdurl, jeepney, isort, iniconfig, 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\n  Attempting uninstall: setuptools\n    Found existing installation: setuptools 65.5.0\n    Uninstalling setuptools-65.5.0:\n      Successfully uninstalled setuptools-65.5.0\nSuccessfully installed Pygments-2.16.1 SecretStorage-3.3.3 black-23.9.1 build-1.0.3 certifi-2023.7.22 cffi-1.16.0 charset-normalizer-3.3.0 click-8.1.7 cmarkgfm-2022.10.27 coverage-7.3.2 cryptography-41.0.5 docutils-0.20.1 importlib-metadata-6.8.0 iniconfig-2.0.0 isort-5.12.0 jaraco.classes-3.3.0 jeepney-0.8.0 keyring-24.2.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-3.11.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.2 pytest-cov-4.1.0 pytest-mock-3.11.1 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.6.0 setuptools-68.2.2 twine-4.0.2 urllib3-2.0.6 wheel-0.41.2 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.6\npip 23.3.1 from /home/runner/work/octodns/octodns/env/lib/python3.11/site-packages/pip (python 3.11)\n## modules: \nblack==23.9.1\nbuild==1.0.3\ncertifi==2023.7.22\ncffi==1.16.0\ncharset-normalizer==3.3.0\nclick==8.1.7\ncmarkgfm==2022.10.27\ncoverage==7.3.2\ncryptography==41.0.5\ndnspython==2.4.2\ndocutils==0.20.1\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.2.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==3.11.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.16.1\npyproject_hooks==1.0.0\npytest==7.4.2\npytest-cov==4.1.0\npytest-mock==3.11.1\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.6.0\nSecretStorage==3.3.3\nsix==1.16.0\ntwine==4.0.2\nurllib3==2.0.6\nzipp==3.17.0\n## clean up ####################################################################\n## begin #######################################################################\n## lint ########################################################################\ntests/test_octodns_processor_filter.py:199:13: local variable 'filter_private' is assigned to but never used\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.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## 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 44.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-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.16.1 (from -r requirements-dev.txt (line 2))\n  Downloading Pygments-2.16.1-py3-none-any.whl.metadata (2.5 kB)\nCollecting black==23.9.1 (from -r requirements-dev.txt (line 3))\n  Downloading black-23.9.1-py3-none-any.whl.metadata (65 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 65.1/65.1 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.7.22 (from -r requirements-dev.txt (line 5))\n  Downloading certifi-2023.7.22-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.0 (from -r requirements-dev.txt (line 7))\n  Downloading charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (32 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 34.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  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 importlib-metadata==6.8.0 (from -r requirements-dev.txt (line 12))\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 13))\n  Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)\nCollecting isort==5.12.0 (from -r requirements-dev.txt (line 14))\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.0 MB/s eta 0:00:00\nCollecting jaraco.classes==3.3.0 (from -r requirements-dev.txt (line 15))\n  Downloading jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)\nCollecting keyring==24.2.0 (from -r requirements-dev.txt (line 16))\n  Downloading keyring-24.2.0-py3-none-any.whl.metadata (20 kB)\nCollecting markdown-it-py==3.0.0 (from -r requirements-dev.txt (line 17))\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 18))\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 19))\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 20))\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 21))\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 22))\n  Downloading packaging-23.2-py3-none-any.whl.metadata (3.2 kB)\nCollecting pathspec==0.11.2 (from -r requirements-dev.txt (line 23))\n  Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)\nCollecting pkginfo==1.9.6 (from -r requirements-dev.txt (line 24))\n  Downloading pkginfo-1.9.6-py3-none-any.whl (30 kB)\nCollecting platformdirs==3.11.0 (from -r requirements-dev.txt (line 25))\n  Using cached platformdirs-3.11.0-py3-none-any.whl.metadata (11 kB)\nCollecting pluggy==1.3.0 (from -r requirements-dev.txt (line 26))\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 27))\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 28))\n  Downloading pycountry_convert-0.7.2-py3-none-any.whl (13 kB)\nCollecting pycountry==22.3.5 (from -r requirements-dev.txt (line 29))\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 132.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 30))\n  Using cached pycparser-2.21-py2.py3-none-any.whl (118 kB)\nCollecting pyflakes==3.1.0 (from -r requirements-dev.txt (line 31))\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 32))\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 33))\n  Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB)\nCollecting pytest-mock==3.11.1 (from -r requirements-dev.txt (line 34))\n  Downloading pytest_mock-3.11.1-py3-none-any.whl.metadata (3.8 kB)\nCollecting pytest-network==0.0.1 (from -r requirements-dev.txt (line 35))\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.2 (from -r requirements-dev.txt (line 36))\n  Downloading pytest-7.4.2-py3-none-any.whl.metadata (7.9 kB)\nCollecting readme-renderer==42.0 (from -r requirements-dev.txt (line 37))\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 38))\n  Downloading repoze.lru-0.7-py3-none-any.whl (10 kB)\nCollecting requests-toolbelt==1.0.0 (from -r requirements-dev.txt (line 39))\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 19.4 MB/s eta 0:00:00\nCollecting requests==2.31.0 (from -r requirements-dev.txt (line 40))\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 41))\n  Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\nCollecting rich==13.6.0 (from -r requirements-dev.txt (line 42))\n  Downloading rich-13.6.0-py3-none-any.whl.metadata (18 kB)\nCollecting setuptools==68.2.2 (from -r requirements-dev.txt (line 43))\n  Using cached setuptools-68.2.2-py3-none-any.whl.metadata (6.3 kB)\nCollecting twine==4.0.2 (from -r requirements-dev.txt (line 44))\n  Downloading twine-4.0.2-py3-none-any.whl (36 kB)\nCollecting urllib3==2.0.6 (from -r requirements-dev.txt (line 45))\n  Downloading urllib3-2.0.6-py3-none-any.whl.metadata (6.6 kB)\nCollecting wheel==0.41.2 (from -r requirements-dev.txt (line 46))\n  Downloading wheel-0.41.2-py3-none-any.whl.metadata (2.2 kB)\nCollecting zipp==3.17.0 (from -r requirements-dev.txt (line 47))\n  Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)\nCollecting SecretStorage>=3.2 (from keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)\nCollecting jeepney>=0.4.2 (from keyring==24.2.0->-r requirements-dev.txt (line 16))\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 17.5 MB/s eta 0:00:00\nRequirement already satisfied: idna<4,>=2.5 in ./env/lib/python3.12/site-packages (from requests==2.31.0->-r requirements-dev.txt (line 40)) (3.4)\nCollecting cryptography>=2.0 (from SecretStorage>=3.2->keyring==24.2.0->-r requirements-dev.txt (line 16))\n  Downloading cryptography-41.0.5-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)\nDownloading Pygments-2.16.1-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 104.6 MB/s eta 0:00:00\nDownloading black-23.9.1-py3-none-any.whl (182 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 182.6/182.6 kB 51.8 MB/s eta 0:00:00\nDownloading build-1.0.3-py3-none-any.whl (18 kB)\nDownloading certifi-2023.7.22-py3-none-any.whl (158 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 158.3/158.3 kB 47.8 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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138 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 138.7/138.7 kB 40.8 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 30.7 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 59.6 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 85.8 MB/s eta 0:00:00\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.2.0-py3-none-any.whl (37 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.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 14.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 104.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 18.5 MB/s eta 0:00:00\nDownloading pathspec-0.11.2-py3-none-any.whl (29 kB)\nUsing cached platformdirs-3.11.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.6 MB/s eta 0:00:00\nDownloading pytest_cov-4.1.0-py3-none-any.whl (21 kB)\nDownloading pytest_mock-3.11.1-py3-none-any.whl (9.6 kB)\nDownloading pytest-7.4.2-py3-none-any.whl (324 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 324.5/324.5 kB 71.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 22.0 MB/s eta 0:00:00\nDownloading rich-13.6.0-py3-none-any.whl (239 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 239.8/239.8 kB 62.0 MB/s eta 0:00:00\nUsing cached setuptools-68.2.2-py3-none-any.whl (807 kB)\nDownloading urllib3-2.0.6-py3-none-any.whl (123 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 123.8/123.8 kB 37.1 MB/s eta 0:00:00\nDownloading wheel-0.41.2-py3-none-any.whl (64 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 64.8/64.8 kB 23.7 MB/s eta 0:00:00\nDownloading zipp-3.17.0-py3-none-any.whl (7.4 kB)\nDownloading cryptography-41.0.5-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 119.3 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=438510 sha256=440245c828301f55b2b78d4db633391b3b017f850a82444bd62781c17d3b2b4e\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=baa4c10f33363afe9dbb8805396477ce477b6bba3dfd9ea76dc124e0456fa8ce\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=2959 sha256=76de79b52539a868a5f6ac38beefbbb6220e96694dc168f82d9c7fed67009d10\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, setuptools, rfc3986, pyproject_hooks, Pygments, pyflakes, pycparser, pluggy, platformdirs, pkginfo, pathspec, packaging, mypy-extensions, more-itertools, mdurl, jeepney, isort, iniconfig, 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.16.1 SecretStorage-3.3.3 black-23.9.1 build-1.0.3 certifi-2023.7.22 cffi-1.16.0 charset-normalizer-3.3.0 click-8.1.7 cmarkgfm-2022.10.27 coverage-7.3.2 cryptography-41.0.5 docutils-0.20.1 importlib-metadata-6.8.0 iniconfig-2.0.0 isort-5.12.0 jaraco.classes-3.3.0 jeepney-0.8.0 keyring-24.2.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-3.11.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.2 pytest-cov-4.1.0 pytest-mock-3.11.1 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.6.0 setuptools-68.2.2 twine-4.0.2 urllib3-2.0.6 wheel-0.41.2 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.0\npip 23.3.1 from /home/runner/work/octodns/octodns/env/lib/python3.12/site-packages/pip (python 3.12)\n## modules: \nblack==23.9.1\nbuild==1.0.3\ncertifi==2023.7.22\ncffi==1.16.0\ncharset-normalizer==3.3.0\nclick==8.1.7\ncmarkgfm==2022.10.27\ncoverage==7.3.2\ncryptography==41.0.5\ndnspython==2.4.2\ndocutils==0.20.1\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.2.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==3.11.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.16.1\npyproject_hooks==1.0.0\npytest==7.4.2\npytest-cov==4.1.0\npytest-mock==3.11.1\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.6.0\nSecretStorage==3.3.3\nsetuptools==68.2.2\nsix==1.16.0\ntwine==4.0.2\nurllib3==2.0.6\nwheel==0.41.2\nzipp==3.17.0\n## clean up ####################################################################\n## begin #######################################################################\n## lint ########################################################################\ntests/test_octodns_processor_filter.py:199:13: local variable 'filter_private' is assigned to but never used\n##[error]Process completed with exit code 1.\n"}], "diff": "diff --git a/tests/test_octodns_processor_filter.py b/tests/test_octodns_processor_filter.py\nindex 6525900..7ee98a8 100644\n--- a/tests/test_octodns_processor_filter.py\n+++ b/tests/test_octodns_processor_filter.py\n@@ -196,7 +196,7 @@ class TestNetworkValueFilter(TestCase):\n \n     def test_bad_config(self):\n         with self.assertRaises(ValueError):\n-            filter_private = NetworkValueRejectlistFilter(\n+            NetworkValueRejectlistFilter(\n                 'rejectlist', set(('string', '42.42.42.42/43'))\n             )\n \n", "difficulty": 2, "changed_files": ["tests/test_octodns_processor_filter.py"], "commit_link": "https://github.com/octodns/octodns/tree/3ed7a88e343c89b7153efea25db1b6287b2f0823"}