public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tim Harder" <radhermit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-relaxed/
Date: Thu,  8 Feb 2018 05:11:10 +0000 (UTC)	[thread overview]
Message-ID: <1518066538.c7ddf66e2865bb5d3da6d49398801c8e589b63e8.radhermit@gentoo> (raw)

commit:     c7ddf66e2865bb5d3da6d49398801c8e589b63e8
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  8 05:04:38 2018 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Thu Feb  8 05:08:58 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7ddf66e

dev-python/pytest-relaxed: initial import, new test dep for paramiko

 dev-python/pytest-relaxed/Manifest                 |  1 +
 dev-python/pytest-relaxed/metadata.xml             | 12 +++++++++
 .../pytest-relaxed/pytest-relaxed-1.1.0.ebuild     | 31 ++++++++++++++++++++++
 3 files changed, 44 insertions(+)

diff --git a/dev-python/pytest-relaxed/Manifest b/dev-python/pytest-relaxed/Manifest
new file mode 100644
index 00000000000..0faad2d9e9a
--- /dev/null
+++ b/dev-python/pytest-relaxed/Manifest
@@ -0,0 +1 @@
+DIST pytest-relaxed-1.1.0.tar.gz 25942 BLAKE2B 6dd34044ec3ae0b5c85f0a76102aaeafe3dad8748c0cf34666dd3550162a2968191efb8415467259a4f072905af062aeabaaaeb475ab68d47aa8d79e3cadd3d0 SHA512 010e37c4d0c63bd00af8851bb50e52af7f8f17769be042e4941e8d8ba451920c24dfa6cdf74cd1b3ca4b3e1c71cd5e1ac34ffae855fc261cf431c212f98cbfff

diff --git a/dev-python/pytest-relaxed/metadata.xml b/dev-python/pytest-relaxed/metadata.xml
new file mode 100644
index 00000000000..2d23528854f
--- /dev/null
+++ b/dev-python/pytest-relaxed/metadata.xml
@@ -0,0 +1,12 @@
+<?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>
+		<name>Python</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="pypi">pytest-relaxed</remote-id>
+		<remote-id type="github">bitprophet/pytest-relaxed</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/pytest-relaxed/pytest-relaxed-1.1.0.ebuild b/dev-python/pytest-relaxed/pytest-relaxed-1.1.0.ebuild
new file mode 100644
index 00000000000..5264bf4fb7f
--- /dev/null
+++ b/dev-python/pytest-relaxed/pytest-relaxed-1.1.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="py.test plugin for relaxed test discovery and organization"
+HOMEPAGE="https://pypi.python.org/pypi/pytest-relaxed https://github.com/bitprophet/pytest-relaxed"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD-2"
+KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
+IUSE="test"
+
+RDEPEND="
+	>=dev-python/pytest-3[${PYTHON_USEDEP}]
+	>=dev-python/six-1[${PYTHON_USEDEP}]
+	>=dev-python/decorator-4[${PYTHON_USEDEP}]
+"
+DEPEND="test? ( ${RDEPEND} )"
+
+# various misc failures
+RESTRICT="test"
+
+python_test() {
+	py.test || die "tests failed with ${EPYTHON}"
+}


             reply	other threads:[~2018-02-08  5:11 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-08  5:11 Tim Harder [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-02-13 21:01 [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-relaxed/ Matt Thode
2018-02-18  8:34 Sergei Trofimovich
2018-02-22 16:09 Michał Górny
2018-02-22 18:28 Jeroen Roovers
2018-03-13 18:08 Markus Meier
2018-08-18 13:29 Virgil Dupras
2018-08-18 17:26 Virgil Dupras
2018-08-22 14:48 Virgil Dupras
2018-09-03 17:40 Markus Meier
2018-09-10 21:21 Sergei Trofimovich
2018-09-14  8:28 Tobias Klausmann
2018-09-16 20:25 Matt Turner
2018-09-16 20:25 Matt Turner
2018-10-05 17:05 Tobias Klausmann
2018-10-07 20:02 Virgil Dupras
2018-10-12 19:08 Sergei Trofimovich
2018-11-08 23:35 Sergei Trofimovich
2019-01-28 20:28 Matthew Thode

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=1518066538.c7ddf66e2865bb5d3da6d49398801c8e589b63e8.radhermit@gentoo \
    --to=radhermit@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