Skip to content

Commit 27be152

Browse files
committed
Also lint benchmarking scripts
1 parent 2b55944 commit 27be152

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

benchmark_scripts/gzipread128kblocks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@
77
block = gzip_file.read(128 * 1024)
88
if not block:
99
break
10-

benchmark_scripts/gzipreadlines.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
with igzip.open(sys.argv[1], "rb") as gzip_file:
66
for line in gzip_file:
77
pass
8-

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ deps=flake8
3434
pytest
3535
skip_install=True
3636
commands =
37-
flake8 src tests setup.py benchmark.py
38-
mypy src/ tests
37+
flake8 src tests setup.py benchmark_scripts
38+
mypy src/ tests benchmark_scripts
3939

4040
[testenv:twine_check]
4141
deps=build

0 commit comments

Comments
 (0)