bashrun 0.1.0__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bashrun-0.1.2/.gitattributes +1 -0
- {bashrun-0.1.0 → bashrun-0.1.2}/.github/workflows/ci.yml +4 -1
- {bashrun-0.1.0 → bashrun-0.1.2}/AGENTS.md +1 -1
- {bashrun-0.1.0 → bashrun-0.1.2}/PKG-INFO +1 -1
- {bashrun-0.1.0 → bashrun-0.1.2}/pyproject.toml +1 -1
- bashrun-0.1.2/ruff.base.toml +204 -0
- bashrun-0.1.2/ruff.toml +1 -0
- {bashrun-0.1.0 → bashrun-0.1.2}/src/bashrun/bash.py +2 -2
- bashrun-0.1.2/src/bashrun/py.typed +0 -0
- {bashrun-0.1.0 → bashrun-0.1.2}/tests/test_bash.py +6 -6
- bashrun-0.1.0/ruff.toml +0 -57
- bashrun-0.1.0/src/bashrun/__init__.py +0 -23
- {bashrun-0.1.0 → bashrun-0.1.2}/.gitignore +0 -0
- {bashrun-0.1.0 → bashrun-0.1.2}/.python-version +0 -0
- {bashrun-0.1.0 → bashrun-0.1.2}/CLAUDE.md +0 -0
- {bashrun-0.1.0 → bashrun-0.1.2}/LICENSE +0 -0
- {bashrun-0.1.0 → bashrun-0.1.2}/NOTICE +0 -0
- {bashrun-0.1.0 → bashrun-0.1.2}/README.md +0 -0
- {bashrun-0.1.0 → bashrun-0.1.2}/publish-config.json +0 -0
- /bashrun-0.1.0/src/bashrun/py.typed → /bashrun-0.1.2/src/bashrun/__init__.py +0 -0
- {bashrun-0.1.0 → bashrun-0.1.2}/uv.lock +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ruff.base.toml -text
|
|
@@ -32,6 +32,9 @@ jobs:
|
|
|
32
32
|
- name: Test
|
|
33
33
|
run: uv run pytest
|
|
34
34
|
|
|
35
|
+
- name: Ruff config drift
|
|
36
|
+
run: uvx --from python-devkit==0.1.3 sync-ruff --check
|
|
37
|
+
|
|
35
38
|
publish:
|
|
36
39
|
needs: check
|
|
37
40
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
@@ -48,4 +51,4 @@ jobs:
|
|
|
48
51
|
- uses: astral-sh/setup-uv@v7
|
|
49
52
|
|
|
50
53
|
- name: Publish
|
|
51
|
-
run: uvx --from
|
|
54
|
+
run: uvx --from release-kit==0.1.0 publish-packages --config publish-config.json
|
|
@@ -17,7 +17,7 @@ The package is `bashrun` (src-layout under `src/bashrun/`); consumer repos decla
|
|
|
17
17
|
- `bash_pipe(cmd1, cmd2, ...)` — runs a real shell pipeline by chaining child processes' stdio in Python; each intermediate's stderr is discarded, the final's is preserved. This is why `bash`/`bash_output` reject `|`: pipelines have their own helper.
|
|
18
18
|
- `bash_handoff(command)` — `os.execvpe`s into the child (Windows falls back to `subprocess.run` + `sys.exit`). The current process is replaced; no return.
|
|
19
19
|
- `first_stderr_line(error)` — the first non-empty stderr line of a `CalledProcessError`, falling back to `str(error)` when stderr is absent. The one-liner shape for surfacing "why did it fail" in a verdict row or problem message without dumping full stderr.
|
|
20
|
-
- `__init__.py` —
|
|
20
|
+
- `__init__.py` — empty (RUF067 strict mode); the public surface is `bashrun.bash`, imported by submodule path (`from bashrun.bash import bash, CalledProcessError`). `CalledProcessError` (the type `bash`/`bash_output` raise on failure) lives in `bash.py`, so consumers can catch the wrapper's own failure shape without importing `subprocess` themselves; the `# ruff: noqa: S404` boundary stays that one file.
|
|
21
21
|
|
|
22
22
|
## Constraints
|
|
23
23
|
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
# Org-canonical ruff configuration, hosted in python-devkit.
|
|
2
|
+
# Consuming repos carry this file verbatim as ruff.base.toml, written by the
|
|
3
|
+
# sync-ruff verb (uvx --from python-devkit sync-ruff) and drift-gated in CI.
|
|
4
|
+
# Never edit a synced copy: change this canonical, release python-devkit, and
|
|
5
|
+
# re-run sync-ruff in each consuming repo.
|
|
6
|
+
target-version = "py313"
|
|
7
|
+
line-length = 120
|
|
8
|
+
preview = true
|
|
9
|
+
required-version = ">=0.14.11"
|
|
10
|
+
|
|
11
|
+
[lint]
|
|
12
|
+
select = ["ALL"]
|
|
13
|
+
ignore = [
|
|
14
|
+
# ── Temporarily ignored (inline noqas exist for these rules but are redundant
|
|
15
|
+
# while the rules are globally ignored — RUF100 suppresses the "unused noqa" warning
|
|
16
|
+
# until we un-ignore each ticket's rules)
|
|
17
|
+
"RUF100",
|
|
18
|
+
|
|
19
|
+
# ── Permanently ignored ──────────────────────────────────────────────
|
|
20
|
+
# Type annotations — basedpyright strict mode handles this
|
|
21
|
+
"ANN",
|
|
22
|
+
# EM101 (string literal in exception) — the msg = ... indirection adds verbosity without benefit
|
|
23
|
+
"EM101",
|
|
24
|
+
# TRY003 (raise vanilla args) — requires custom exception class for every raise site;
|
|
25
|
+
# the real problem (interpolation) is caught by EM102/EM103
|
|
26
|
+
"TRY003",
|
|
27
|
+
# A003 (class attribute shadowing) — class attributes via self.x never conflict with builtins
|
|
28
|
+
"A003",
|
|
29
|
+
# Function complexity counting — C901 already covers structural complexity;
|
|
30
|
+
# these counting rules are largely redundant
|
|
31
|
+
"PLR0911",
|
|
32
|
+
"PLR0912",
|
|
33
|
+
"PLR0913",
|
|
34
|
+
"PLR0914",
|
|
35
|
+
"PLR0915",
|
|
36
|
+
"PLR0917",
|
|
37
|
+
|
|
38
|
+
# ── Temporarily ignored (will enable when conventions are established) ─
|
|
39
|
+
# Docstrings — project policy is "no docstrings" for now
|
|
40
|
+
"D",
|
|
41
|
+
# Copyright notices — not yet established
|
|
42
|
+
"CPY",
|
|
43
|
+
# Docstring formatting — blocked on D
|
|
44
|
+
"DOC",
|
|
45
|
+
# TODO/FIXME comment formatting
|
|
46
|
+
"TD",
|
|
47
|
+
"FIX",
|
|
48
|
+
|
|
49
|
+
# The "Ticket N" blocks below are the transitional cleanup slices tracked
|
|
50
|
+
# by PLE-248 (Enforce the deferred ruff rules):
|
|
51
|
+
# https://linear.app/plerionplatforms/issue/PLE-248
|
|
52
|
+
# Ticket 3 (T201, print → logging) is tracked by PLE-336:
|
|
53
|
+
# https://linear.app/plerionplatforms/issue/PLE-336
|
|
54
|
+
# Lifting a rule = remove it here in python-devkit's canonical config,
|
|
55
|
+
# release, and run sync-ruff in every consuming repo.
|
|
56
|
+
|
|
57
|
+
# ── Ticket 1: Auto-fix formatting & type modernization ───────────────
|
|
58
|
+
# Zero risk. Purely mechanical, all auto-fixable via ruff --fix.
|
|
59
|
+
"COM812", # missing trailing commas
|
|
60
|
+
"I001", # import sorting
|
|
61
|
+
"ISC003", # explicit string concatenation
|
|
62
|
+
"RUF031", # parenthesized tuple in subscript
|
|
63
|
+
"TC001", # move import into TYPE_CHECKING block
|
|
64
|
+
"TC002", # move third-party import into TYPE_CHECKING block
|
|
65
|
+
"TC003", # move stdlib import into TYPE_CHECKING block
|
|
66
|
+
"TC006", # move typing import into TYPE_CHECKING block (PEP 695)
|
|
67
|
+
"TC008", # move import into TYPE_CHECKING block (quoted annotation)
|
|
68
|
+
"UP006", # use X instead of typing.X
|
|
69
|
+
"UP007", # use X | Y instead of Union
|
|
70
|
+
"UP011", # unnecessary parentheses to functools.lru_cache
|
|
71
|
+
"UP015", # unnecessary open mode parameters
|
|
72
|
+
"UP017", # use datetime.UTC alias
|
|
73
|
+
"UP034", # extraneous parentheses
|
|
74
|
+
"UP035", # deprecated import (use collections.abc, etc.)
|
|
75
|
+
"UP040", # use PEP 695 type alias
|
|
76
|
+
"UP042", # use PEP 695 type parameters
|
|
77
|
+
"UP045", # use X | None instead of Optional
|
|
78
|
+
|
|
79
|
+
# ── Ticket 2: Auto-fix code simplifications ──────────────────────────
|
|
80
|
+
# Very low risk. Auto-fixable with trivial semantic changes.
|
|
81
|
+
"C401", # unnecessary generator — use set/dict comprehension
|
|
82
|
+
"C416", # unnecessary comprehension — use list/dict
|
|
83
|
+
"ERA001", # commented-out code
|
|
84
|
+
"FURB101", # read-text can replace open+read
|
|
85
|
+
"FURB103", # write-text can replace open+write
|
|
86
|
+
"FURB110", # use ternary instead of try/except for default
|
|
87
|
+
"FURB113", # use list.extend instead of repeated append
|
|
88
|
+
"FURB118", # use operator module instead of lambda
|
|
89
|
+
"LOG004", # use __name__ as logger name
|
|
90
|
+
"PERF401", # use list comprehension instead of manual append
|
|
91
|
+
"PIE810", # unnecessary spread of single-element starred
|
|
92
|
+
"PLC0207", # use a single __all__ definition
|
|
93
|
+
"PLC1901", # compare to empty string using falsy check
|
|
94
|
+
"PLR1711", # useless return at end of function
|
|
95
|
+
"PLR6104", # use augmented assignment
|
|
96
|
+
"PLR6201", # use a set literal for membership test
|
|
97
|
+
"PLW1510", # subprocess.run without explicit check= argument
|
|
98
|
+
"PLW1514", # open without explicit encoding
|
|
99
|
+
"PT001", # use @pytest.fixture over @pytest.fixture()
|
|
100
|
+
"PT018", # composite assertion — split into multiple asserts
|
|
101
|
+
"PTH101", # os.chmod → Path.chmod
|
|
102
|
+
"PTH111", # os.path.expanduser → Path.expanduser
|
|
103
|
+
"PTH112", # os.path.isdir → Path.is_dir
|
|
104
|
+
"PTH118", # os.path.join → Path /
|
|
105
|
+
"PTH123", # open() → Path.open()
|
|
106
|
+
"PTH201", # pathlib.Path(".")
|
|
107
|
+
"RET501", # unnecessary explicit return None
|
|
108
|
+
"RET504", # unnecessary assignment before return
|
|
109
|
+
"RET505", # unnecessary else after return
|
|
110
|
+
"RET506", # unnecessary else after raise
|
|
111
|
+
"RET507", # unnecessary else after continue
|
|
112
|
+
"RSE102", # unnecessary parentheses on raised exception
|
|
113
|
+
"RUF005", # consider spread operator instead of concatenation
|
|
114
|
+
"RUF010", # use explicit conversion flag in f-string
|
|
115
|
+
"RUF015", # prefer next() over single-element slice
|
|
116
|
+
"RUF029", # function is declared async but has no await
|
|
117
|
+
"RUF052", # local variable is assigned but never used (underscore prefix)
|
|
118
|
+
"RUF056", # unnecessary default value for keyword argument
|
|
119
|
+
"SIM102", # collapsible if statements
|
|
120
|
+
"SIM105", # use contextlib.suppress instead of try/except/pass
|
|
121
|
+
"SIM115", # use context manager for opening files
|
|
122
|
+
"SIM117", # use single with statement for multiple context managers
|
|
123
|
+
"SIM118", # use key in dict instead of key in dict.keys()
|
|
124
|
+
"TID252", # prefer absolute imports over relative
|
|
125
|
+
|
|
126
|
+
# ── Ticket 3: print → logging ────────────────────────────────────────
|
|
127
|
+
# All code should use logging, including CLI scripts.
|
|
128
|
+
"T201", # print found
|
|
129
|
+
|
|
130
|
+
# ── Ticket 4: Exception message interpolation ────────────────────────
|
|
131
|
+
# Remove f-strings from exception messages — use string literals.
|
|
132
|
+
"EM102", # f-string in exception message
|
|
133
|
+
|
|
134
|
+
# ── Ticket 5: Missing __init__.py + shebangs ─────────────────────────
|
|
135
|
+
# Add __init__.py to installable packages; remove vestigial shebangs.
|
|
136
|
+
"INP001", # implicit namespace package — add __init__.py
|
|
137
|
+
"EXE001", # shebang present but file not executable
|
|
138
|
+
|
|
139
|
+
# ── Ticket 6: Type ignore specificity ────────────────────────────────
|
|
140
|
+
# Replace blanket type: ignore with specific error codes.
|
|
141
|
+
"PGH003", # blanket type: ignore
|
|
142
|
+
|
|
143
|
+
# ── Ticket 7: Boolean trap refactoring ───────────────────────────────
|
|
144
|
+
# Change function signatures — callers must update too.
|
|
145
|
+
"FBT001", # boolean positional argument
|
|
146
|
+
"FBT002", # boolean default value in function definition
|
|
147
|
+
"FBT003", # boolean positional value in call
|
|
148
|
+
|
|
149
|
+
# ── Ticket 8: Exception handling patterns ────────────────────────────
|
|
150
|
+
# Behavioral changes to error handling.
|
|
151
|
+
"B020", # loop variable overwritten by except
|
|
152
|
+
"B903", # generator should use yield from
|
|
153
|
+
"B904", # raise without from inside except
|
|
154
|
+
"B905", # zip() without strict= parameter
|
|
155
|
+
"BLE001", # blind except Exception
|
|
156
|
+
"S101", # assert outside tests
|
|
157
|
+
"TRY002", # create custom exception class
|
|
158
|
+
"TRY300", # try/except/return — move return into else
|
|
159
|
+
|
|
160
|
+
# ── Ticket 9: Complexity, naming & refactoring ───────────────────────
|
|
161
|
+
# Structural changes requiring judgment.
|
|
162
|
+
"A001", # builtin shadowing (dir, bytes)
|
|
163
|
+
"ARG001", # unused function argument
|
|
164
|
+
"ARG002", # unused method argument
|
|
165
|
+
"C901", # function too complex
|
|
166
|
+
"E501", # line too long
|
|
167
|
+
"N802", # function name should be lowercase
|
|
168
|
+
"N806", # variable in function should be lowercase
|
|
169
|
+
"N815", # mixed-case variable in class scope
|
|
170
|
+
"N818", # exception name should end in Error
|
|
171
|
+
"PLC0415", # import not at top level
|
|
172
|
+
"PLE0704", # bare raise not inside except handler
|
|
173
|
+
"PLR1702", # too many nested blocks
|
|
174
|
+
"PLR2004", # magic value used in comparison
|
|
175
|
+
"PLR6301", # method could be function or static method
|
|
176
|
+
"PLW0603", # global statement
|
|
177
|
+
"PLW2901", # loop variable overwritten
|
|
178
|
+
"RUF001", # ambiguous unicode — replace with ASCII
|
|
179
|
+
"RUF003", # ambiguous unicode in comment
|
|
180
|
+
"S106", # possible hardcoded password
|
|
181
|
+
"S108", # probable insecure temp file/dir usage
|
|
182
|
+
"S110", # try/except/pass on broad exception
|
|
183
|
+
"S202", # use of tarfile.extractall
|
|
184
|
+
# S404/S603: prerequisite — bash.py needs env, stderr=STDOUT merge, and no-raise-with-capture
|
|
185
|
+
# before context_sha.py, deptry_check.py, test_context_sha.py, list_debug_targets.py can migrate
|
|
186
|
+
"S404", # suspicious subprocess import
|
|
187
|
+
"S603", # subprocess call with non-literal
|
|
188
|
+
"S606", # starting process without shell
|
|
189
|
+
"S607", # starting process with partial path
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[lint.per-file-ignores]
|
|
193
|
+
# Tests use assert as the standard pytest mechanism; fixtures take arguments
|
|
194
|
+
# that pytest consumes implicitly; pytest-style test classes need no self use
|
|
195
|
+
"**/tests/**" = ["S101", "ARG001", "ARG002", "PLR6301"]
|
|
196
|
+
|
|
197
|
+
[lint.ruff]
|
|
198
|
+
# RUF067 in strict mode: __init__.py files must be empty — no re-exports, no
|
|
199
|
+
# side effects. Consumers import submodule paths (from pkg.mod import thing);
|
|
200
|
+
# the package layout is the public surface.
|
|
201
|
+
strictly-empty-init-modules = true
|
|
202
|
+
|
|
203
|
+
[lint.flake8-builtins]
|
|
204
|
+
ignorelist = ["id", "map"]
|
bashrun-0.1.2/ruff.toml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
extend = "ruff.base.toml"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# ruff: noqa: S404, S603, S606, T201, PLW0717, PLW1510 — this module is the project's subprocess wrapper
|
|
1
|
+
# ruff: noqa: S404, S603, S606, T201, PLC0414, PLW0717, PLW1510 — this module is the project's subprocess wrapper (PLC0414: the same-name alias is pyright's explicit-re-export idiom for CalledProcessError)
|
|
2
2
|
import os
|
|
3
3
|
import re
|
|
4
4
|
import shlex
|
|
@@ -7,7 +7,7 @@ import subprocess
|
|
|
7
7
|
import sys
|
|
8
8
|
from contextlib import ExitStack
|
|
9
9
|
from pathlib import Path
|
|
10
|
-
from subprocess import CalledProcessError, Popen, TimeoutExpired
|
|
10
|
+
from subprocess import CalledProcessError as CalledProcessError, Popen, TimeoutExpired
|
|
11
11
|
from typing import NoReturn
|
|
12
12
|
|
|
13
13
|
|
|
File without changes
|
|
@@ -6,7 +6,7 @@ import tempfile
|
|
|
6
6
|
from pathlib import Path
|
|
7
7
|
|
|
8
8
|
import pytest
|
|
9
|
-
from bashrun import (
|
|
9
|
+
from bashrun.bash import (
|
|
10
10
|
CalledProcessError,
|
|
11
11
|
bash,
|
|
12
12
|
bash_check,
|
|
@@ -67,7 +67,7 @@ class TestBash:
|
|
|
67
67
|
[
|
|
68
68
|
sys.executable,
|
|
69
69
|
"-c",
|
|
70
|
-
f"from pathlib import Path; from bashrun import bash; bash('pwd', cwd=Path('{tmpdir}'))",
|
|
70
|
+
f"from pathlib import Path; from bashrun.bash import bash; bash('pwd', cwd=Path('{tmpdir}'))",
|
|
71
71
|
],
|
|
72
72
|
capture_output=True,
|
|
73
73
|
text=True,
|
|
@@ -76,7 +76,7 @@ class TestBash:
|
|
|
76
76
|
|
|
77
77
|
def test_passes_stdin_text(self):
|
|
78
78
|
result = subprocess.run(
|
|
79
|
-
[sys.executable, "-c", "from bashrun import bash; bash('cat', stdin_text='streamed input')"],
|
|
79
|
+
[sys.executable, "-c", "from bashrun.bash import bash; bash('cat', stdin_text='streamed input')"],
|
|
80
80
|
capture_output=True,
|
|
81
81
|
text=True,
|
|
82
82
|
)
|
|
@@ -137,7 +137,7 @@ class TestBashNoRaise:
|
|
|
137
137
|
class TestBashHandoff:
|
|
138
138
|
def test_stdout_contains_output(self):
|
|
139
139
|
result = subprocess.run(
|
|
140
|
-
[sys.executable, "-c", "from bashrun import bash_handoff; bash_handoff('echo handoff_test')"],
|
|
140
|
+
[sys.executable, "-c", "from bashrun.bash import bash_handoff; bash_handoff('echo handoff_test')"],
|
|
141
141
|
capture_output=True,
|
|
142
142
|
text=True,
|
|
143
143
|
)
|
|
@@ -145,7 +145,7 @@ class TestBashHandoff:
|
|
|
145
145
|
|
|
146
146
|
def test_exit_code_matches(self):
|
|
147
147
|
result = subprocess.run(
|
|
148
|
-
[sys.executable, "-c", "from bashrun import bash_handoff; bash_handoff('sh -c \"exit 42\"')"],
|
|
148
|
+
[sys.executable, "-c", "from bashrun.bash import bash_handoff; bash_handoff('sh -c \"exit 42\"')"],
|
|
149
149
|
capture_output=True,
|
|
150
150
|
text=True,
|
|
151
151
|
)
|
|
@@ -157,7 +157,7 @@ class TestBashHandoff:
|
|
|
157
157
|
[
|
|
158
158
|
sys.executable,
|
|
159
159
|
"-c",
|
|
160
|
-
f"from pathlib import Path; from bashrun import bash_handoff; bash_handoff('pwd', cwd=Path('{tmpdir}'))",
|
|
160
|
+
f"from pathlib import Path; from bashrun.bash import bash_handoff; bash_handoff('pwd', cwd=Path('{tmpdir}'))",
|
|
161
161
|
],
|
|
162
162
|
capture_output=True,
|
|
163
163
|
text=True,
|
bashrun-0.1.0/ruff.toml
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
target-version = "py313"
|
|
2
|
-
line-length = 120
|
|
3
|
-
preview = true
|
|
4
|
-
|
|
5
|
-
[lint]
|
|
6
|
-
select = ["ALL"]
|
|
7
|
-
ignore = [
|
|
8
|
-
# Type annotations — basedpyright strict mode handles this
|
|
9
|
-
"ANN",
|
|
10
|
-
# No docstrings, no copyright headers
|
|
11
|
-
"D",
|
|
12
|
-
"DOC",
|
|
13
|
-
"CPY",
|
|
14
|
-
# TODO/FIXME comment formatting
|
|
15
|
-
"TD",
|
|
16
|
-
"FIX",
|
|
17
|
-
# Exception message ergonomics — literal-indirection and custom-class churn without benefit
|
|
18
|
-
"EM101",
|
|
19
|
-
"EM102",
|
|
20
|
-
"TRY003",
|
|
21
|
-
# Class attribute names never conflict with builtins via self.x
|
|
22
|
-
"A003",
|
|
23
|
-
# Function-size counters — C901 already covers structural complexity
|
|
24
|
-
"PLR0911",
|
|
25
|
-
"PLR0912",
|
|
26
|
-
"PLR0913",
|
|
27
|
-
"PLR0914",
|
|
28
|
-
"PLR0915",
|
|
29
|
-
"PLR0917",
|
|
30
|
-
# Boolean parameters read fine as keyword-only flags here
|
|
31
|
-
"FBT001",
|
|
32
|
-
"FBT002",
|
|
33
|
-
"FBT003",
|
|
34
|
-
# Relative imports are the intra-package convention
|
|
35
|
-
"TID252",
|
|
36
|
-
# Formatter-owned; enforced by `ruff format`
|
|
37
|
-
"COM812",
|
|
38
|
-
"I001",
|
|
39
|
-
# Magic values in comparisons are readable here
|
|
40
|
-
"PLR2004",
|
|
41
|
-
# The formatter owns wrapping; long string literals and URLs stay on one line
|
|
42
|
-
"E501",
|
|
43
|
-
# src-layout tests need no __init__.py
|
|
44
|
-
"INP001",
|
|
45
|
-
# Runtime-used typing imports stay at module level
|
|
46
|
-
"TC001",
|
|
47
|
-
"TC002",
|
|
48
|
-
"TC003",
|
|
49
|
-
# Small literal tuples read fine in membership tests
|
|
50
|
-
"PLR6201",
|
|
51
|
-
]
|
|
52
|
-
|
|
53
|
-
[lint.per-file-ignores]
|
|
54
|
-
"tests/**" = ["S101", "PLR6301"]
|
|
55
|
-
|
|
56
|
-
[lint.flake8-builtins]
|
|
57
|
-
ignorelist = ["id", "map"]
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
from .bash import (
|
|
2
|
-
CalledProcessError,
|
|
3
|
-
bash,
|
|
4
|
-
bash_check,
|
|
5
|
-
bash_check_stream,
|
|
6
|
-
bash_handoff,
|
|
7
|
-
bash_no_raise,
|
|
8
|
-
bash_output,
|
|
9
|
-
bash_pipe,
|
|
10
|
-
first_stderr_line,
|
|
11
|
-
)
|
|
12
|
-
|
|
13
|
-
__all__ = [
|
|
14
|
-
"CalledProcessError",
|
|
15
|
-
"bash",
|
|
16
|
-
"bash_check",
|
|
17
|
-
"bash_check_stream",
|
|
18
|
-
"bash_handoff",
|
|
19
|
-
"bash_no_raise",
|
|
20
|
-
"bash_output",
|
|
21
|
-
"bash_pipe",
|
|
22
|
-
"first_stderr_line",
|
|
23
|
-
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|