public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-sanic/
Date: Wed, 16 Mar 2022 20:48:28 +0000 (UTC)	[thread overview]
Message-ID: <1647312563.50e73ceb3dc666d892773f58aadc80cd77382b57.arthurzam@gentoo> (raw)

commit:     50e73ceb3dc666d892773f58aadc80cd77382b57
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Mar 15 02:49:23 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 02:49:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=50e73ceb

dev-python/pytest-sanic: treeclean

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/pytest-sanic/Manifest                  |  1 -
 dev-python/pytest-sanic/metadata.xml              | 19 --------
 dev-python/pytest-sanic/pytest-sanic-1.7.1.ebuild | 53 -----------------------
 3 files changed, 73 deletions(-)

diff --git a/dev-python/pytest-sanic/Manifest b/dev-python/pytest-sanic/Manifest
deleted file mode 100644
index c905f80b0..000000000
--- a/dev-python/pytest-sanic/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-sanic-1.7.1.tar.gz 30888 BLAKE2B 24623e47fb05db9919cfd0b41468261697ac70c7bc3e47a3c6c86efadbddd3c80f2e6173eb109206472d0b639ecd20edd0cebb244bd96ed1d2ca10dd88924b5b SHA512 a55ffd1c878478bd42aad5dc023f83e880ead4fb8538a24d327bd0fb7f811e0d3679e49206835ee7f98ac0a02dedb05f6fa729252eab7972879c196c57e3f071

diff --git a/dev-python/pytest-sanic/metadata.xml b/dev-python/pytest-sanic/metadata.xml
deleted file mode 100644
index e71c2c30b..000000000
--- a/dev-python/pytest-sanic/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <!-- maintainer-needed -->
-  <longdescription lang="en">
-A pytest plugin for Sanic. It helps you to test your code asynchronously.
-
-This plugin provides:
-
-    very easy testing with async coroutines
-    common and useful fixtures
-    asynchronous fixture support
-    test_client/sanic_client for Sanic application
-    test_server for Sanic application
-  </longdescription>
-  <upstream>
-    <remote-id type="github">yunstanford/pytest-sanic</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/dev-python/pytest-sanic/pytest-sanic-1.7.1.ebuild b/dev-python/pytest-sanic/pytest-sanic-1.7.1.ebuild
deleted file mode 100644
index d91cd4e33..000000000
--- a/dev-python/pytest-sanic/pytest-sanic-1.7.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-DISTUTILS_USE_SETUPTOOLS="pyproject.toml"
-PYTHON_COMPAT=( python3_{8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="a Pytest Plugin for Sanic"
-HOMEPAGE="
-	https://pypi.python.org/pypi/pytest-sanic
-	https://github.com/yunstanford/pytest-sanic
-"
-SRC_URI="https://github.com/yunstanford/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	>=dev-python/async_generator-1.10[${PYTHON_USEDEP}]
-	>=dev-python/httpx-0.15.4[${PYTHON_USEDEP}]
-	>=dev-python/pytest-5.2[${PYTHON_USEDEP}]
-	>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
-"
-DEPEND="
-	${RDEPEND}
-	test? ( >=dev-python/sanic-20.12.2[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest
-# where is the conf.py file? make html can't find it either
-#distutils_enable_sphinx docs
-
-python_test() {
-	distutils_install_for_testing
-	pytest -vv \
-		--deselect tests/test_client.py::test_fixture_sanic_client_get \
-		--deselect tests/test_client.py::test_fixture_sanic_client_post \
-		--deselect tests/test_client.py::test_fixture_sanic_client_put \
-		--deselect tests/test_client.py::test_fixture_sanic_client_delete \
-		--deselect tests/test_client.py::test_fixture_sanic_client_patch \
-		--deselect tests/test_client.py::test_fixture_sanic_client_options \
-		--deselect tests/test_client.py::test_fixture_sanic_client_head \
-		--deselect tests/test_client.py::test_fixture_sanic_client_close \
-		--deselect tests/test_client.py::test_fixture_sanic_client_passing_headers \
-		--deselect tests/test_client.py::test_fixture_sanic_client_context_manager \
-		--deselect tests/test_client.py::test_fixture_test_client_context_manager \
-		|| die "Tests failed with ${EPYTHON}"
-
-}


             reply	other threads:[~2022-03-16 20:48 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-16 20:48 Arthur Zamarin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-05-30 15:53 [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-sanic/ Andrew Ammerlaan
2021-05-30 15:53 Andrew Ammerlaan
2021-05-28 10:28 Andrew Ammerlaan
2021-05-28 10:28 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-05-28 10:28 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-11-26 12:10 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-11-26 12:10 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-06-30 19:43 Andrew Ammerlaan
2020-06-09 16:37 Andrew Ammerlaan
2020-03-29 13:21 Andrew Ammerlaan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1647312563.50e73ceb3dc666d892773f58aadc80cd77382b57.arthurzam@gentoo \
    --to=arthurzam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox