File: 2002_avoid_missing_pytest_ext.patch

package info (click to toggle)
radicale 3.5.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 1,708 kB
  • sloc: python: 10,257; javascript: 1,144; sh: 269; xml: 93; makefile: 38; perl: 20
file content (28 lines) | stat: -rw-r--r-- 702 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Description: Avoid arguably author-only tests
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2016-07-08
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -52,7 +52,7 @@
 
 [tool.tox]
 min_version = "4.0"
-envlist = ["py", "flake8", "isort", "mypy"]
+envlist = ["py", "flake8", "mypy"]
 
 [tool.tox.env.py]
 extras = ["test"]
@@ -67,11 +67,6 @@
 commands = [["flake8", "."]]
 skip_install = true
 
-[tool.tox.env.isort]
-deps = ["isort==5.13.2"]
-commands = [["isort", "--check", "--diff", "."]]
-skip_install = true
-
 [tool.tox.env.mypy]
 deps = ["mypy==1.11.0"]
 commands = [["mypy", "--install-types", "--non-interactive", "."]]