blob: 5d9eb0fa1c5ed443120bfed70eac6ba0d35266bd [file] [log] [blame]
Patrick Williams8e7b46e2023-05-01 14:19:06 -05001#
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 = "\
Patrick Williams73bd93f2024-02-20 08:07:48 -060010 python3-appdirs \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050011 python3-ansicolors \
12 python3-asgiref \
13 python3-aspectlib \
14 python3-blinker \
15 python3-cachetools \
16 python3-cbor2 \
17 python3-click \
18 python3-dominate \
19 python3-execnet \
Patrick Williamsb58112e2024-03-07 11:16:36 -060020 python3-freezegun \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050021 python3-geojson \
Patrick Williamsb58112e2024-03-07 11:16:36 -060022 python3-gpiod \
Patrick Williams39653562024-03-01 08:54:02 -060023 python3-gunicorn \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050024 python3-html2text \
25 python3-inflection \
Patrick Williams39653562024-03-01 08:54:02 -060026 python3-inotify \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050027 python3-intervals \
28 python3-ipy \
29 python3-iso3166 \
Patrick Williams39653562024-03-01 08:54:02 -060030 python3-jdcal \
31 python3-jsmin \
32 python3-msgpack \
Patrick Williamsf52e3dd2024-01-26 13:04:43 -060033 python3-multidict \
Patrick Williamsb58112e2024-03-07 11:16:36 -060034 python3-netaddr \
Patrick Williams39653562024-03-01 08:54:02 -060035 python3-ordered-set \
36 python3-parse \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050037 python3-parse-type \
Andrew Geissler3eeda902023-05-19 10:14:02 -050038 python3-platformdirs \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050039 python3-polyline \
40 python3-precise-runner \
41 python3-prettytable \
Patrick Williams169d7bc2024-01-05 11:33:25 -060042 python3-pydantic \
43 python3-pydantic-core \
Patrick Williamse760df82023-05-26 11:10:49 -050044 python3-pylint \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050045 python3-ptyprocess \
Patrick Williamsac13d5f2023-11-24 18:59:46 -060046 python3-py-cpuinfo \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050047 python3-pyasn1-modules \
48 python3-pyroute2 \
49 python3-pyserial \
Patrick Williamsac13d5f2023-11-24 18:59:46 -060050 python3-pytest-mock \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050051 python3-pytoml \
Patrick Williams73bd93f2024-02-20 08:07:48 -060052 python3-pyyaml-include \
Patrick Williamsac13d5f2023-11-24 18:59:46 -060053 python3-rapidjson \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050054 python3-requests-file \
55 python3-requests-toolbelt \
56 python3-semver \
57 python3-serpent \
Patrick Williams39653562024-03-01 08:54:02 -060058 python3-service-identity \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050059 python3-simpleeval \
60 python3-smpplib \
61 python3-soupsieve \
62 python3-sqlparse \
Andrew Geissler3eeda902023-05-19 10:14:02 -050063 python3-tomlkit \
Patrick Williams39653562024-03-01 08:54:02 -060064 python3-trustme \
65 python3-typeguard \
Patrick Williams73bd93f2024-02-20 08:07:48 -060066 python3-ujson \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050067 python3-u-msgpack-python \
68 python3-unidiff \
69 python3-uritemplate \
Patrick Williamsb58112e2024-03-07 11:16:36 -060070 python3-wrapt \
71 python3-xlrd \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050072 python3-xmltodict \
73 python3-xxhash \
Patrick Williams73bd93f2024-02-20 08:07:48 -060074 python3-yarl \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050075"
76
77PTESTS_SLOW_META_PYTHON = "\
Patrick Williamsb58112e2024-03-07 11:16:36 -060078 python3-arrow \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050079 python3-lz4 \
Patrick Williamsb58112e2024-03-07 11:16:36 -060080 python3-marshmallow \
Patrick Williams169d7bc2024-01-05 11:33:25 -060081 python3-yappi \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050082"
83
84PTESTS_PROBLEMS_META_PYTHON ="\
Patrick Williams8e7b46e2023-05-01 14:19:06 -050085 python3-betamax \
86 python3-dnspython \
87 python3-fastjsonschema \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050088 python3-pillow \
89 python3-pint \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050090 python3-pyzmq \
91 python3-scrypt \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050092 python3-whoosh \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050093"