blob: 44507b394ecf4bf0f95f8b7d7ec4d99c379a687b [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 = "\
10 python3-ansicolors \
11 python3-asgiref \
12 python3-aspectlib \
13 python3-blinker \
14 python3-cachetools \
15 python3-cbor2 \
16 python3-click \
17 python3-dominate \
18 python3-execnet \
19 python3-geojson \
20 python3-html2text \
21 python3-inflection \
22 python3-intervals \
23 python3-ipy \
24 python3-iso3166 \
Patrick Williamsf52e3dd2024-01-26 13:04:43 -060025 python3-multidict \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050026 python3-parse-type \
Andrew Geissler3eeda902023-05-19 10:14:02 -050027 python3-platformdirs \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050028 python3-polyline \
29 python3-precise-runner \
30 python3-prettytable \
Patrick Williams169d7bc2024-01-05 11:33:25 -060031 python3-pydantic \
32 python3-pydantic-core \
Patrick Williamse760df82023-05-26 11:10:49 -050033 python3-pylint \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050034 python3-ptyprocess \
Patrick Williamsac13d5f2023-11-24 18:59:46 -060035 python3-py-cpuinfo \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050036 python3-pyasn1-modules \
37 python3-pyroute2 \
38 python3-pyserial \
Patrick Williamsac13d5f2023-11-24 18:59:46 -060039 python3-pytest-mock \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050040 python3-pytoml \
Patrick Williamsac13d5f2023-11-24 18:59:46 -060041 python3-rapidjson \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050042 python3-requests-file \
43 python3-requests-toolbelt \
44 python3-semver \
45 python3-serpent \
46 python3-simpleeval \
47 python3-smpplib \
48 python3-soupsieve \
49 python3-sqlparse \
Andrew Geissler3eeda902023-05-19 10:14:02 -050050 python3-tomlkit \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050051 python3-u-msgpack-python \
52 python3-unidiff \
53 python3-uritemplate \
54 python3-xmltodict \
55 python3-xxhash \
56"
57
58PTESTS_SLOW_META_PYTHON = "\
59 python3-lz4 \
Patrick Williams169d7bc2024-01-05 11:33:25 -060060 python3-yappi \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050061"
62
63PTESTS_PROBLEMS_META_PYTHON ="\
64 python3-appdirs \
65 python3-betamax \
66 python3-dnspython \
67 python3-fastjsonschema \
68 python3-gpiod \
69 python3-gunicorn \
70 python3-inotify \
71 python3-jdcal \
72 python3-jsmin \
73 python3-license-expression \
74 python3-msgpack \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050075 python3-ordered-set \
76 python3-parse \
77 python3-pillow \
78 python3-pint \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050079 python3-pytest-lazy-fixture \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050080 python3-pyzmq \
81 python3-scrypt \
82 python3-service-identity \
83 python3-trustme \
84 python3-typeguard \
85 python3-whoosh \
86 python3-ujson \
87 python3-xlrd \
Patrick Williams8e7b46e2023-05-01 14:19:06 -050088 python3-yarl \
89"