Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 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 \ |
Andrew Geissler | 3eeda90 | 2023-05-19 10:14:02 -0500 | [diff] [blame] | 26 | python3-platformdirs \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 27 | python3-polyline \ |
| 28 | python3-precise-runner \ |
| 29 | python3-prettytable \ |
Patrick Williams | e760df8 | 2023-05-26 11:10:49 -0500 | [diff] [blame] | 30 | python3-pylint \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 31 | python3-ptyprocess \ |
| 32 | python3-pyasn1-modules \ |
| 33 | python3-pyroute2 \ |
| 34 | python3-pyserial \ |
| 35 | python3-pytoml \ |
| 36 | python3-requests-file \ |
| 37 | python3-requests-toolbelt \ |
| 38 | python3-semver \ |
| 39 | python3-serpent \ |
| 40 | python3-simpleeval \ |
| 41 | python3-smpplib \ |
| 42 | python3-soupsieve \ |
| 43 | python3-sqlparse \ |
Andrew Geissler | 3eeda90 | 2023-05-19 10:14:02 -0500 | [diff] [blame] | 44 | python3-tomlkit \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 45 | python3-u-msgpack-python \ |
| 46 | python3-unidiff \ |
| 47 | python3-uritemplate \ |
| 48 | python3-xmltodict \ |
| 49 | python3-xxhash \ |
| 50 | " |
| 51 | |
| 52 | PTESTS_SLOW_META_PYTHON = "\ |
| 53 | python3-lz4 \ |
| 54 | " |
| 55 | |
| 56 | PTESTS_PROBLEMS_META_PYTHON ="\ |
| 57 | python3-appdirs \ |
| 58 | python3-betamax \ |
| 59 | python3-dnspython \ |
| 60 | python3-fastjsonschema \ |
| 61 | python3-gpiod \ |
| 62 | python3-gunicorn \ |
| 63 | python3-inotify \ |
| 64 | python3-jdcal \ |
| 65 | python3-jsmin \ |
| 66 | python3-license-expression \ |
| 67 | python3-msgpack \ |
| 68 | python3-multidict \ |
| 69 | python3-ordered-set \ |
| 70 | python3-parse \ |
| 71 | python3-pillow \ |
| 72 | python3-pint \ |
| 73 | python3-py-cpuinfo \ |
| 74 | python3-pytest-lazy-fixture \ |
Patrick Williams | b542dec | 2023-06-09 01:26:37 -0500 | [diff] [blame] | 75 | python3-pytest-mock \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 76 | python3-pyzmq \ |
| 77 | python3-scrypt \ |
| 78 | python3-service-identity \ |
| 79 | python3-trustme \ |
| 80 | python3-typeguard \ |
| 81 | python3-whoosh \ |
| 82 | python3-ujson \ |
| 83 | python3-xlrd \ |
| 84 | python3-yappi \ |
| 85 | python3-yarl \ |
| 86 | " |