diff options
author | Tim Orling <ticotimo@gmail.com> | 2023-04-02 15:29:37 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-04-04 13:39:45 -0700 |
commit | 69d921a342dd57f3aafddc9e45b693d04ccd9cd8 (patch) | |
tree | bb136ec53a636d7177bfdf4648876d82242831ec | |
parent | 580c36fa723c6f434bd9bcc07e991647e5509bea (diff) | |
download | meta-openembedded-69d921a342dd57f3aafddc9e45b693d04ccd9cd8.tar.gz |
ptest-packagelists-meta-python.inc: add ptest recipes
Similar to ptest-packagelists.inc in oe-core, this list enables
per image ptest (isolated ptests for a given recipe)
* Add recipes to PTEST_FAST_META_PYTHON for ptests which take less than ~30s
* Add recipes to PTEST_SLOW_META_PYTHON for ptests which take longer
* Add recipes to PTEST_PROBLEMS_META_PYTHON for ptests which have failing tests
or other issues with ptest package
The initial list was taken from:
meta_python_ptest_recipes=$(bitbake-layers show-recipes --recipes-only \
--layer meta-python --inherits ptest --bare | tr '\n' ' ' | \
pcregrep -o1 '^NOTE:.+===(.+)$')
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/conf/include/ptest-packagelists-meta-python.inc | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc new file mode 100644 index 000000000..ef5d20bcd --- /dev/null +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc | |||
@@ -0,0 +1,82 @@ | |||
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 | ||
9 | PTESTS_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 \ | ||
25 | python3-parse-type \ | ||
26 | python3-polyline \ | ||
27 | python3-precise-runner \ | ||
28 | python3-prettytable \ | ||
29 | python3-ptyprocess \ | ||
30 | python3-pyasn1-modules \ | ||
31 | python3-pyroute2 \ | ||
32 | python3-pyserial \ | ||
33 | python3-pytoml \ | ||
34 | python3-requests-file \ | ||
35 | python3-requests-toolbelt \ | ||
36 | python3-semver \ | ||
37 | python3-serpent \ | ||
38 | python3-simpleeval \ | ||
39 | python3-smpplib \ | ||
40 | python3-soupsieve \ | ||
41 | python3-sqlparse \ | ||
42 | python3-u-msgpack-python \ | ||
43 | python3-unidiff \ | ||
44 | python3-uritemplate \ | ||
45 | python3-xmltodict \ | ||
46 | python3-xxhash \ | ||
47 | " | ||
48 | |||
49 | PTESTS_SLOW_META_PYTHON = "\ | ||
50 | python3-lz4 \ | ||
51 | " | ||
52 | |||
53 | PTESTS_PROBLEMS_META_PYTHON ="\ | ||
54 | python3-appdirs \ | ||
55 | python3-betamax \ | ||
56 | python3-dnspython \ | ||
57 | python3-fastjsonschema \ | ||
58 | python3-gpiod \ | ||
59 | python3-gunicorn \ | ||
60 | python3-inotify \ | ||
61 | python3-jdcal \ | ||
62 | python3-jsmin \ | ||
63 | python3-license-expression \ | ||
64 | python3-msgpack \ | ||
65 | python3-multidict \ | ||
66 | python3-ordered-set \ | ||
67 | python3-parse \ | ||
68 | python3-pillow \ | ||
69 | python3-pint \ | ||
70 | python3-py-cpuinfo \ | ||
71 | python3-pytest-lazy-fixture \ | ||
72 | python3-pyzmq \ | ||
73 | python3-scrypt \ | ||
74 | python3-service-identity \ | ||
75 | python3-trustme \ | ||
76 | python3-typeguard \ | ||
77 | python3-whoosh \ | ||
78 | python3-ujson \ | ||
79 | python3-xlrd \ | ||
80 | python3-yappi \ | ||
81 | python3-yarl \ | ||
82 | " | ||