public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-subtests/
@ 2020-03-28 11:08 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-03-28 11:08 UTC (permalink / raw
  To: gentoo-commits

commit:     cc6a08c0bf02b291e6b1b12f5fe0e9a57dbdb2c4
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Mar 28 10:32:49 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Mar 28 11:00:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cc6a08c0

dev-python/pytest-subtests: skip failing test

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild b/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
index da37383..d49e68a 100644
--- a/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
+++ b/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
@@ -20,3 +20,11 @@ SLOT="0"
 RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
 
 distutils_enable_tests pytest
+
+python_prepare_all() {
+	# Failed: nomatch: '*1 passed*'
+	sed -i -e 's:test_capture_with_fixture:_&:' \
+		tests/test_subtests.py || die
+
+	distutils-r1_python_prepare_all
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-subtests/
@ 2020-03-31  9:07 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-03-31  9:07 UTC (permalink / raw
  To: gentoo-commits

commit:     ea6be99ab4d2d4b4819abe5d1a1bf245500426d8
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Mar 30 19:54:55 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Mar 30 19:54:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ea6be99a

dev-python/pytest-subtests: restrict tests

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild b/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
index d49e68a..a3d3b5d 100644
--- a/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
+++ b/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
@@ -17,7 +17,13 @@ LICENSE="MIT"
 KEYWORDS="~amd64 ~x86"
 SLOT="0"
 
-RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
+#https://github.com/pytest-dev/pytest-subtests/issues/21
+RESTRICT="test"
+
+RDEPEND="
+	>=dev-python/pytest-4.4[${PYTHON_USEDEP}]
+	>=dev-python/pytest-xdist-1.28[${PYTHON_USEDEP}]
+"
 
 distutils_enable_tests pytest
 


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-subtests/
@ 2020-04-03 21:37 Haelwenn Monnier
  0 siblings, 0 replies; 8+ messages in thread
From: Haelwenn Monnier @ 2020-04-03 21:37 UTC (permalink / raw
  To: gentoo-commits

commit:     29034a54e86839be962fe09ffd0062b359b274f9
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu Apr  2 23:02:46 2020 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Thu Apr  2 23:04:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=29034a54

dev-python/pytest-subtests: enable tests

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild b/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
index a3d3b5d..06cf27f 100644
--- a/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
+++ b/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
@@ -17,9 +17,6 @@ LICENSE="MIT"
 KEYWORDS="~amd64 ~x86"
 SLOT="0"
 
-#https://github.com/pytest-dev/pytest-subtests/issues/21
-RESTRICT="test"
-
 RDEPEND="
 	>=dev-python/pytest-4.4[${PYTHON_USEDEP}]
 	>=dev-python/pytest-xdist-1.28[${PYTHON_USEDEP}]
@@ -28,6 +25,7 @@ RDEPEND="
 distutils_enable_tests pytest
 
 python_prepare_all() {
+	#https://github.com/pytest-dev/pytest-subtests/issues/21
 	# Failed: nomatch: '*1 passed*'
 	sed -i -e 's:test_capture_with_fixture:_&:' \
 		tests/test_subtests.py || die


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-subtests/
@ 2020-04-03 21:37 Haelwenn Monnier
  0 siblings, 0 replies; 8+ messages in thread
From: Haelwenn Monnier @ 2020-04-03 21:37 UTC (permalink / raw
  To: gentoo-commits

commit:     0e4e63d376cff52fa014a53c39a09dd205250f96
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Apr  3 10:29:47 2020 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Fri Apr  3 10:29:47 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0e4e63d3

dev-python/pytest-subtests: fix tests if pakcage ...

is not already installed

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild b/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
index 06cf27f..3e44500 100644
--- a/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
+++ b/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
@@ -32,3 +32,10 @@ python_prepare_all() {
 
 	distutils-r1_python_prepare_all
 }
+
+python_test() {
+	# tests fail if package is not installed
+	# workaround is to add source to PYTHONPATH
+	PYTHONPATH="${S}"
+	pytest -vv || die
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-subtests/
@ 2020-06-15 11:35 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-06-15 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     e4f8c170686a2a9dfe05762453d72605ac0b8565
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Jun 15 10:43:35 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Jun 15 10:43:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e4f8c170

dev-python/pytest-subtests: version bump, add py3_9

Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pytest-subtests/Manifest                                     | 2 +-
 .../{pytest-subtests-0.3.0.ebuild => pytest-subtests-0.3.1.ebuild}      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pytest-subtests/Manifest b/dev-python/pytest-subtests/Manifest
index dbce82b..9b63a6b 100644
--- a/dev-python/pytest-subtests/Manifest
+++ b/dev-python/pytest-subtests/Manifest
@@ -1 +1 @@
-DIST pytest-subtests-0.3.0.tar.gz 9399 BLAKE2B cf940ea94926d271f2959924522e273d433510396e1a1fc73cfa445f08616c35cf48fb599953e918e0e2d9a5ac1c2d9e9e8d3e41faa112818b3685d328ba44c7 SHA512 49ebf151c95e1d2c89af78d8b1abfa06d5db9bf1e297f09a49a802b1b42d064ad38a2aa619aa254d23b475c7548c62b753d999f4e38eb5e1651ae067ca9cd525
+DIST pytest-subtests-0.3.1.tar.gz 9523 BLAKE2B 96b55b583b4635b6b47caf0fa630127140d74ec1773e6719e8d510a9ad6dd11f303a0716574f979a7bdf60741908a2357218c10ef1b00ac67cf2bb8f60f3a79c SHA512 5695246652f7912be6efbf2dad1325962b9abc0cf064906c9d4d28391d2cf66eda503ef3d458a61257fb78b8cd4c706a0e9584f0d4715a53eb7b0a0180319353

diff --git a/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild b/dev-python/pytest-subtests/pytest-subtests-0.3.1.ebuild
similarity index 96%
rename from dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
rename to dev-python/pytest-subtests/pytest-subtests-0.3.1.ebuild
index 3e44500..34f6833 100644
--- a/dev-python/pytest-subtests/pytest-subtests-0.3.0.ebuild
+++ b/dev-python/pytest-subtests/pytest-subtests-0.3.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 DISTUTILS_USE_SETUPTOOLS=rdepend
 


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-subtests/
@ 2020-11-08 13:56 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-11-08 13:56 UTC (permalink / raw
  To: gentoo-commits

commit:     9fae52e3f7c8f63b566d6451478b005ac3361c18
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Nov  8 13:56:22 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Nov  8 13:56:22 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9fae52e3

dev-python/pytest-subtests: version bump 0.3.2

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pytest-subtests/Manifest                           |  2 +-
 ...est-subtests-0.3.1.ebuild => pytest-subtests-0.3.2.ebuild} | 11 -----------
 2 files changed, 1 insertion(+), 12 deletions(-)

diff --git a/dev-python/pytest-subtests/Manifest b/dev-python/pytest-subtests/Manifest
index 9b63a6bb..a20104eb 100644
--- a/dev-python/pytest-subtests/Manifest
+++ b/dev-python/pytest-subtests/Manifest
@@ -1 +1 @@
-DIST pytest-subtests-0.3.1.tar.gz 9523 BLAKE2B 96b55b583b4635b6b47caf0fa630127140d74ec1773e6719e8d510a9ad6dd11f303a0716574f979a7bdf60741908a2357218c10ef1b00ac67cf2bb8f60f3a79c SHA512 5695246652f7912be6efbf2dad1325962b9abc0cf064906c9d4d28391d2cf66eda503ef3d458a61257fb78b8cd4c706a0e9584f0d4715a53eb7b0a0180319353
+DIST pytest-subtests-0.3.2.tar.gz 9694 BLAKE2B 86d5d4a986a643f5e06a13fc2f4ccfc39a244d0428e535ff99080f9dbde4cb8cfb3d1150267ddca40df3c0f2bce31c3d06bd6cbaa93e37f586db3b19f7a0edbc SHA512 d76a88d4b10e74f599dcf6585545ba97a90dfe49ed84772d6b1a6ef540e3663fce298fe5d86e508422a62bcbf5bf7ca22dd00454974b3ec1f3e98f9d68588817

diff --git a/dev-python/pytest-subtests/pytest-subtests-0.3.1.ebuild b/dev-python/pytest-subtests/pytest-subtests-0.3.2.ebuild
similarity index 71%
rename from dev-python/pytest-subtests/pytest-subtests-0.3.1.ebuild
rename to dev-python/pytest-subtests/pytest-subtests-0.3.2.ebuild
index 55656b7f..07374459 100644
--- a/dev-python/pytest-subtests/pytest-subtests-0.3.1.ebuild
+++ b/dev-python/pytest-subtests/pytest-subtests-0.3.2.ebuild
@@ -5,8 +5,6 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8,9} )
 
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
 inherit distutils-r1
 
 DESCRIPTION="unittest subTest() support and subtests fixture"
@@ -24,15 +22,6 @@ RDEPEND="
 
 distutils_enable_tests pytest
 
-python_prepare_all() {
-	#https://github.com/pytest-dev/pytest-subtests/issues/21
-	# Failed: nomatch: '*1 passed*'
-	sed -i -e 's:test_capture_with_fixture:_&:' \
-		tests/test_subtests.py || die
-
-	distutils-r1_python_prepare_all
-}
-
 python_test() {
 	# tests fail if package is not installed
 	# workaround is to add source to PYTHONPATH


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-subtests/
  2020-12-18 14:15 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2020-12-18 14:15 ` Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-12-18 14:15 UTC (permalink / raw
  To: gentoo-commits

commit:     77c24a31d7c4b9f6d1dee08ac1dbbf9e3a8450e9
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Dec 18 13:17:23 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Dec 18 13:17:23 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=77c24a31

dev-python/pytest-subtests: version bump 0.4.0

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pytest-subtests/Manifest                                     | 2 +-
 .../{pytest-subtests-0.3.2.ebuild => pytest-subtests-0.4.0.ebuild}      | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-subtests/Manifest b/dev-python/pytest-subtests/Manifest
index a20104eb..567ed7de 100644
--- a/dev-python/pytest-subtests/Manifest
+++ b/dev-python/pytest-subtests/Manifest
@@ -1 +1 @@
-DIST pytest-subtests-0.3.2.tar.gz 9694 BLAKE2B 86d5d4a986a643f5e06a13fc2f4ccfc39a244d0428e535ff99080f9dbde4cb8cfb3d1150267ddca40df3c0f2bce31c3d06bd6cbaa93e37f586db3b19f7a0edbc SHA512 d76a88d4b10e74f599dcf6585545ba97a90dfe49ed84772d6b1a6ef540e3663fce298fe5d86e508422a62bcbf5bf7ca22dd00454974b3ec1f3e98f9d68588817
+DIST pytest-subtests-0.4.0.tar.gz 10751 BLAKE2B 5b3d3cf6a7302455796f6ac3188aad5e2dc3de559fb6a85c83e623f55ffe13aa9a3d86305753c413547f1217c293ccdb429af98f0b7e5c292a6216755f205659 SHA512 22fba780a75c2e801ec4525d7a2b906955bf52882ebf4d34670c2a771db8a113355f9c50db52309c4c75c543928bf0214280fc1c395791bc3f09579260a485ca

diff --git a/dev-python/pytest-subtests/pytest-subtests-0.3.2.ebuild b/dev-python/pytest-subtests/pytest-subtests-0.4.0.ebuild
similarity index 100%
rename from dev-python/pytest-subtests/pytest-subtests-0.3.2.ebuild
rename to dev-python/pytest-subtests/pytest-subtests-0.4.0.ebuild


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-subtests/
@ 2021-03-26 18:11 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-03-26 18:11 UTC (permalink / raw
  To: gentoo-commits

commit:     1e1cbb6ff3c5daa43a5c71e49243243f7ee919e6
Author:     Mathieu Tortuyaux <mathieu.tortuyaux <AT> gmail <DOT> com>
AuthorDate: Fri Mar 26 11:20:54 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Mar 26 11:21:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1e1cbb6f

dev-python/pytest-subtests: moved to ::gentoo

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Mathieu Tortuyaux <mathieu.tortuyaux <AT> gmail.com>

 dev-python/pytest-subtests/Manifest                |  1 -
 dev-python/pytest-subtests/metadata.xml            |  9 -------
 .../pytest-subtests/pytest-subtests-0.4.0.ebuild   | 30 ----------------------
 3 files changed, 40 deletions(-)

diff --git a/dev-python/pytest-subtests/Manifest b/dev-python/pytest-subtests/Manifest
deleted file mode 100644
index 567ed7de8..000000000
--- a/dev-python/pytest-subtests/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-subtests-0.4.0.tar.gz 10751 BLAKE2B 5b3d3cf6a7302455796f6ac3188aad5e2dc3de559fb6a85c83e623f55ffe13aa9a3d86305753c413547f1217c293ccdb429af98f0b7e5c292a6216755f205659 SHA512 22fba780a75c2e801ec4525d7a2b906955bf52882ebf4d34670c2a771db8a113355f9c50db52309c4c75c543928bf0214280fc1c395791bc3f09579260a485ca

diff --git a/dev-python/pytest-subtests/metadata.xml b/dev-python/pytest-subtests/metadata.xml
deleted file mode 100644
index 628ab2017..000000000
--- a/dev-python/pytest-subtests/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-
-<pkgmetadata>
-    <maintainer type="person">
-        <email>andrewammerlaan@riseup.net</email>
-        <name>Andrew Ammerlaan</name>
-    </maintainer>
-</pkgmetadata>

diff --git a/dev-python/pytest-subtests/pytest-subtests-0.4.0.ebuild b/dev-python/pytest-subtests/pytest-subtests-0.4.0.ebuild
deleted file mode 100644
index 073744596..000000000
--- a/dev-python/pytest-subtests/pytest-subtests-0.4.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="unittest subTest() support and subtests fixture"
-HOMEPAGE="https://github.com/pytest-dev/pytest-subtests"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-RDEPEND="
-	>=dev-python/pytest-4.4[${PYTHON_USEDEP}]
-	>=dev-python/pytest-xdist-1.28[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-	# tests fail if package is not installed
-	# workaround is to add source to PYTHONPATH
-	PYTHONPATH="${S}"
-	pytest -vv || die
-}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-03-26 18:11 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-03 21:37 [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-subtests/ Haelwenn Monnier
  -- strict thread matches above, loose matches on Subject: below --
2021-03-26 18:11 Andrew Ammerlaan
2020-12-18 14:15 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-12-18 14:15 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-11-08 13:56 Andrew Ammerlaan
2020-06-15 11:35 Andrew Ammerlaan
2020-04-03 21:37 Haelwenn Monnier
2020-03-31  9:07 Andrew Ammerlaan
2020-03-28 11:08 Andrew Ammerlaan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox