Revert "DO NOT MERGE THIS TO MASTER: check if we can make the test fail"

This reverts commit 31bde09bcc.

the check failed sucessfully
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
This commit is contained in:
Andrew Ammerlaan
2021-02-17 16:38:05 +01:00
parent 31bde09bcc
commit e0d0aebffe
3 changed files with 0 additions and 44 deletions

View File

@@ -1 +0,0 @@
DIST sniffio-1.2.0.gh.tar.gz 17335 BLAKE2B 0d67baa18702ac38932680bdc741c87ee0a31342cc752c1463a7f90720ea0ebf6d62ef682a042c58e8fe96456e1461638e0f02c6f60da5f5e0d07464be27a4a3 SHA512 8e1dd2bb6fc22ee5824adfffe688ff0621b8c1ef5daea594dedce13d5e04a498e05816bb32e9bbed206a653a330ff710df57c888ddcff00a6254eafddc538273

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
</maintainer>
<stabilize-allarches/>
<upstream>
<remote-id type="github">python-trio/sniffio</remote-id>
<remote-id type="pypi">sniffio</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1,31 +0,0 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="Sniff out which async library your code is running under"
HOMEPAGE="
https://github.com/python-trio/sniffio/
https://pypi.org/project/sniffio/"
SRC_URI="
https://github.com/python-trio/sniffio/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz"
LICENSE="|| ( Apache-2.0 MIT )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
distutils_enable_tests pytest
python_test() {
local deselect=(
# curio is not packaged
sniffio/_tests/test_sniffio.py::test_curio
)
pytest -vv ${deselect[@]/#/--deselect } ||
die "Tests failed with ${EPYTHON}"
}