File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -92,5 +92,5 @@ def save_uploaded_file_names(self, files):
92
92
"""Keep a record of all file names that have been uploaded.
93
93
Upload log files related to each test after its execution.
94
94
Once done, use already_uploaded_files to create an index file."""
95
- global already_uploaded_files
95
+ global already_uploaded_files # noqa
96
96
already_uploaded_files .extend (files )
Original file line number Diff line number Diff line change 34
34
print ("\n ERROR! Publishing to PyPI requires Python>=3.9" )
35
35
sys .exit ()
36
36
print ("\n *** Checking code health with flake8:\n " )
37
- os .system ("python -m pip install 'flake8==7.1.2 '" )
37
+ os .system ("python -m pip install 'flake8==7.2.0 '" )
38
38
flake8_status = os .system ("flake8 --exclude=recordings,temp" )
39
39
if flake8_status != 0 :
40
40
print ("\n ERROR! Fix flake8 issues before publishing to PyPI!\n " )
You can’t perform that action at this time.
0 commit comments