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-betamax \ 16 python3-bleak \ 17 python3-blinker \ 18 python3-breathe \ 19 python3-cachetools \ 20 python3-cbor2 \ 21 python3-configobj \ 22 python3-click \ 23 python3-dasbus \ 24 python3-dominate \ 25 python3-dnspython \ 26 python3-evdev \ 27 python3-execnet \ 28 python3-fastjsonschema \ 29 python3-fastnumbers \ 30 python3-flask \ 31 python3-flexcache \ 32 python3-flexparser \ 33 python3-freezegun \ 34 python3-fsspec \ 35 python3-geojson \ 36 python3-google-auth-oauthlib \ 37 python3-gpiod \ 38 python3-gpt-image \ 39 python3-gunicorn \ 40 python3-html2text \ 41 python3-httptools \ 42 python3-inflection \ 43 python3-inotify \ 44 python3-intervals \ 45 python3-ipy \ 46 python3-iso3166 \ 47 python3-jdcal \ 48 python3-jsmin \ 49 python3-msgpack \ 50 python3-multidict \ 51 python3-netaddr \ 52 python3-objgraph \ 53 python3-ordered-set \ 54 python3-outcome \ 55 python3-parse \ 56 python3-parse-type \ 57 python3-platformdirs \ 58 python3-polyline \ 59 python3-portalocker \ 60 python3-portion \ 61 python3-precise-runner \ 62 python3-prettytable \ 63 python3-propcache \ 64 python3-pyais \ 65 python3-pydantic \ 66 python3-pydantic-core \ 67 python3-pylint \ 68 python3-python-multipart \ 69 python3-ptyprocess \ 70 python3-py-cpuinfo \ 71 python3-pyasn1-modules \ 72 python3-pyroute2 \ 73 python3-pyserial \ 74 python3-pytest-mock \ 75 python3-pytoml \ 76 python3-pyyaml-include \ 77 python3-pydbus \ 78 python3-pyzmq \ 79 python3-pyzstd \ 80 python3-rapidjson \ 81 python3-requests-file \ 82 python3-requests-toolbelt \ 83 python3-schedule \ 84 python3-semver \ 85 python3-serpent \ 86 python3-service-identity \ 87 python3-setproctitle \ 88 python3-simpleeval \ 89 python3-smpplib \ 90 python3-soupsieve \ 91 python3-sqlparse \ 92 python3-starlette \ 93 python3-tomli-w \ 94 python3-tomlkit \ 95 python3-trustme \ 96 python3-typeguard \ 97 python3-typing-inspection \ 98 python3-tzdata \ 99 python3-uinput \ 100 python3-ujson \ 101 python3-u-msgpack-python \ 102 python3-unidiff \ 103 python3-uritemplate \ 104 python3-validators \ 105 python3-wrapt \ 106 python3-wsproto \ 107 python3-xlrd \ 108 python3-xmltodict \ 109 python3-xxhash \ 110 python3-yarl \ 111" 112 113PTESTS_SLOW_META_PYTHON = "\ 114 python3-arrow \ 115 python3-ecdsa \ 116 python3-google-auth \ 117 python3-lz4 \ 118 python3-marshmallow \ 119 python3-pillow \ 120 python3-pint \ 121 python3-pykickstart \ 122 python3-pytest-localserver \ 123 python3-scrypt \ 124 python3-traitlets \ 125 python3-typer \ 126 python3-yappi \ 127" 128 129PTESTS_PROBLEMS_META_PYTHON = "\ 130 python3-pyasyncore \ 131 tftpy \ 132" 133