dev-python/textual: add 0.44.0, drop 0.36.0

Signed-off-by: Henri Gasc <gasc@eurecom.fr>
This commit is contained in:
Henri Gasc
2023-12-01 21:46:43 +01:00
parent 89d98ee804
commit 0ed46f7a0e
2 changed files with 10 additions and 7 deletions

View File

@@ -1 +1 @@
DIST textual-0.36.0.gh.tar.gz 25861324 BLAKE2B fa4b31b743452e583e40f95a86bb9b0e05a984a04aa83b4820eeed0124bebdb88e011f7d4cfd362cd686bab2df85913a2f4642218b25da9521c871926bbfe46b SHA512 506f04a4eaa363e4423a823b8f4c804d2a531dd246905cf48d0cb001b59f1e1e936bd7b755424d69e5037f4d631fe6c8ea8799cb2d60c4a3fcf2982625d0cc86
DIST textual-0.44.0.gh.tar.gz 27829324 BLAKE2B 2e2e62aa2b05f09a4f29e96465b5228bcc8df0c165560fd4d5a76cb7153c55c6e7eb4434ec167893a888be1c54d24f9b41af1c7c17a8642b9341f245d22b7a73 SHA512 44d10806361571e6cacb087b0ee1fa78a8b55bfdaac14190d70f580e51911dc990ca6d3c9db85bef5df872cc0d7caf20d0ae3bba1020e44889dd487fb5bad97a

View File

@@ -1,10 +1,10 @@
# Copyright 2023 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{10..11} )
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1
@@ -41,8 +41,11 @@ python_install_all() {
elog "If you want the documentation, you can read it at https://textual.textualize.io/"
}
python_test() {
EPYTEST_DESELECT=(
# Those tests ask to press keys
local EPYTEST_IGNORE="tests/snapshot_tests/test_snapshots.py"
epytest "${S}/tests" || die "Tests failed with ${EPYTHON}"
}
tests/snapshot_tests/test_snapshots.py
# Need a package that should be optional
tests/text_area/test_languages.py::test_register_language
tests/text_area/test_languages.py::test_register_language_existing_language
)