dev-python/pytest-black: treeclean

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2022-10-07 23:28:02 +03:00
parent cef8de2efd
commit 6d4d9c861d
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
4 changed files with 0 additions and 93 deletions

View File

@ -1 +0,0 @@
DIST pytest-black-0.3.12.tar.gz 6898 BLAKE2B d37326527e9b3c4f755a99c71f254150b9eadc48e0dc4863af518ccf40dc97a60354402442dd979ead546a72a25398ae4d380fde5ca96afda76ae07415de95f0 SHA512 3bf6cc27a872f351ad1b49650d5b4758d14fea65627008204d2f45557c61e597def6aa6eb6f61fb439ebf783b4df997a3c4320ccbb65ee99d0dd9eaa6fde05bd

View File

@ -1,49 +0,0 @@
From 475cf71aa9de3ededa972ffb36fb47ad79278531 Mon Sep 17 00:00:00 2001
From: Ben Greiner <code@bnavigator.de>
Date: Mon, 15 Mar 2021 11:42:27 +0100
Subject: [PATCH] fix pytest.tmpdir.makefile call
---
tests/test_black.py | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/test_black.py b/tests/test_black.py
index 0405169..a7a6026 100644
--- a/tests/test_black.py
+++ b/tests/test_black.py
@@ -72,8 +72,8 @@ def test_exclude(testdir):
"""Assert test is skipped if path is excluded even if also included
"""
testdir.makefile(
- "pyproject.toml",
- """
+ ".toml",
+ pyproject = """
[tool.black]
include = 'test_exclude.py'
exclude = '.*'
@@ -100,8 +100,8 @@ def test_exclude_folder(testdir):
"""Assert test is skipped for files in a folder
"""
testdir.makefile(
- "pyproject.toml",
- """
+ ".toml",
+ pyproject = """
[tool.black]
exclude = '''
(
@@ -137,8 +137,8 @@ def test_include(testdir):
"""Assert test is not skipped if path is included but not excluded
"""
testdir.makefile(
- "pyproject.toml",
- """
+ ".toml",
+ pyproject = """
[tool.black]
include = 'test_include'
""",
--
2.26.3

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>parona@protonmail.com</email>
<name>Alfred Wingate</name>
</maintainer>
<upstream>
<remote-id type="github">shopkeep/pytest-black</remote-id>
</upstream>
</pkgmetadata>

View File

@ -1,32 +0,0 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
DESCRIPTION="pytest plugin to enable formatting checks with black "
HOMEPAGE="https://github.com/shopkeep/pytest-black"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/black[${PYTHON_USEDEP}]
dev-python/toml[${PYTHON_USEDEP}]
"
DEPEND="test? ( ${RDEPEND} )"
distutils_enable_tests pytest
DOCS=( "README.md" )
# Fix tests for pytest6
# https://github.com/shopkeep/pytest-black/pull/53
PATCHES=( "${FILESDIR}/fix-pytest.tmpdir.makefile-call.patch" )