1# 2# Lists of the ptest in meta-python, sorted into two sets by the time they take 3# Please keep these sorted in alphabetical order 4# 5# A first pass at getting all meta-python recipes which inherit ptest 6# meta_python_ptest_recipes=$(bitbake-layers show-recipes --recipes-only --layer meta-python --inherits ptest --bare | tr '\n' ' ' | pcregrep -o1 '^NOTE:.+===(.+)$') 7# 8# ptests which take less than ~30s each 9PTESTS_FAST_META_PYTHON = "\ 10 python3-a2wsgi \ 11 python3-appdirs \ 12 python3-ansicolors \ 13 python3-asgiref \ 14 python3-aspectlib \ 15 python3-bleak \ 16 python3-blinker \ 17 python3-cachetools \ 18 python3-cbor2 \ 19 python3-configobj \ 20 python3-click \ 21 python3-dasbus \ 22 python3-dominate \ 23 python3-execnet \ 24 python3-flask \ 25 python3-flexcache \ 26 python3-flexparser \ 27 python3-freezegun \ 28 python3-fsspec \ 29 python3-geojson \ 30 python3-google-auth-oauthlib \ 31 python3-gpiod \ 32 python3-gunicorn \ 33 python3-html2text \ 34 python3-httptools \ 35 python3-inflection \ 36 python3-inotify \ 37 python3-intervals \ 38 python3-ipy \ 39 python3-iso3166 \ 40 python3-jdcal \ 41 python3-jsmin \ 42 python3-msgpack \ 43 python3-multidict \ 44 python3-netaddr \ 45 python3-ordered-set \ 46 python3-outcome \ 47 python3-parse \ 48 python3-parse-type \ 49 python3-platformdirs \ 50 python3-polyline \ 51 python3-portalocker \ 52 python3-portion \ 53 python3-precise-runner \ 54 python3-prettytable \ 55 python3-propcache \ 56 python3-pydantic \ 57 python3-pydantic-core \ 58 python3-pylint \ 59 python3-python-multipart \ 60 python3-ptyprocess \ 61 python3-py-cpuinfo \ 62 python3-pyasn1-modules \ 63 python3-pyroute2 \ 64 python3-pyserial \ 65 python3-pytest-mock \ 66 python3-pytoml \ 67 python3-pyyaml-include \ 68 python3-pydbus \ 69 python3-rapidjson \ 70 python3-requests-file \ 71 python3-requests-toolbelt \ 72 python3-semver \ 73 python3-serpent \ 74 python3-service-identity \ 75 python3-setproctitle \ 76 python3-simpleeval \ 77 python3-smpplib \ 78 python3-soupsieve \ 79 python3-sqlparse \ 80 python3-starlette \ 81 python3-tomli-w \ 82 python3-tomlkit \ 83 python3-trustme \ 84 python3-typeguard \ 85 python3-tzdata \ 86 python3-ujson \ 87 python3-u-msgpack-python \ 88 python3-unidiff \ 89 python3-uritemplate \ 90 python3-validators \ 91 python3-wrapt \ 92 python3-wsproto \ 93 python3-xlrd \ 94 python3-xmltodict \ 95 python3-xxhash \ 96 python3-yarl \ 97" 98 99PTESTS_SLOW_META_PYTHON = "\ 100 python3-arrow \ 101 python3-ecdsa \ 102 python3-google-auth \ 103 python3-lz4 \ 104 python3-marshmallow \ 105 python3-pillow \ 106 python3-pint \ 107 python3-pytest-localserver \ 108 python3-scrypt \ 109 python3-traitlets \ 110 python3-typer \ 111 python3-yappi \ 112" 113 114PTESTS_PROBLEMS_META_PYTHON ="\ 115 python3-betamax \ 116 python3-dnspython \ 117 python3-fastjsonschema \ 118 python3-pyzmq \ 119" 120