We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5070566 commit bbfb773Copy full SHA for bbfb773
python_files/printEnvVariablesToFile.py
@@ -12,5 +12,5 @@
12
raise ValueError("Missing output file argument")
13
14
with open(output_file, "w") as outfile: # noqa: PTH123
15
- for key, val in os.environ.items():
+ for key, val in os.environ.items(): # noqa: FURB122
16
outfile.write(f"{key}={val}\n")
python_files/unittestadapter/execution.py
@@ -189,8 +189,8 @@ def run_tests(
189
pattern: str,
190
top_level_dir: Optional[str],
191
verbosity: int,
192
- failfast: Optional[bool],
193
- locals_: Optional[bool] = None,
+ failfast: Optional[bool], # noqa: FBT001
+ locals_: Optional[bool] = None, # noqa: FBT001
194
) -> ExecutionPayloadDict:
195
cwd = os.path.abspath(start_dir) # noqa: PTH100
196
if "/" in start_dir: # is a subdir
0 commit comments