summaryrefslogtreecommitdiff
path: root/dev-python/pydantic
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-08-14 13:45:35 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-08-14 13:45:35 +0000
commitd3efaec21b86eb32ddbcc9c3ceeb8e1eaabc73e7 (patch)
treed7c1089c9341c81ad277737b446e6ce432237f4e /dev-python/pydantic
parentf7c805c96b0fa995102de2f766568f747e5b5bf5 (diff)
downloadbaldeagleos-repo-d3efaec21b86eb32ddbcc9c3ceeb8e1eaabc73e7.tar.gz
baldeagleos-repo-d3efaec21b86eb32ddbcc9c3ceeb8e1eaabc73e7.tar.xz
baldeagleos-repo-d3efaec21b86eb32ddbcc9c3ceeb8e1eaabc73e7.zip
Adding metadata
Diffstat (limited to 'dev-python/pydantic')
-rw-r--r--dev-python/pydantic/pydantic-1.8.2.ebuild10
1 files changed, 7 insertions, 3 deletions
diff --git a/dev-python/pydantic/pydantic-1.8.2.ebuild b/dev-python/pydantic/pydantic-1.8.2.ebuild
index b6d23b4c69a0..7d2f9c0d6686 100644
--- a/dev-python/pydantic/pydantic-1.8.2.ebuild
+++ b/dev-python/pydantic/pydantic-1.8.2.ebuild
@@ -4,7 +4,6 @@
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8,9,10} )
-
inherit distutils-r1
DESCRIPTION="Data parsing and validation using Python type hints"
@@ -36,6 +35,11 @@ src_prepare() {
}
python_test() {
- # TODO
- epytest --deselect tests/test_hypothesis_plugin.py
+ local ignore=(
+ # mypy results depend on version
+ tests/mypy/test_mypy.py
+ # TODO
+ tests/test_hypothesis_plugin.py
+ )
+ epytest ${ignore[@]/#/--ignore }
}