Skip to content

Commit c506e44

Browse files
committedJan 4, 2023
fix(tox): removed py36, py37 from envlist, added 2 files to flake8 ignores
1 parent 7c483b1 commit c506e44

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed
 

‎requirements-dev.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
selenium
33
requests
44
responses
5-
tox
5+
# pycharm issue with v4 +
6+
tox==3.27.1
67
mock
78
pillow
89
psutil
10+
flake8
11+
isort

‎tox.ini

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[tox]
22
envlist =
3-
py36
4-
py37
53
py38
64
py39
75
py310
6+
py311
87
checkqa
98

109
[testenv]
@@ -48,3 +47,6 @@ commands =
4847

4948
[flake8]
5049
max-line-length = 120
50+
per-file-ignores =
51+
__init__.py:F401
52+
browsers.py:F401

0 commit comments

Comments
 (0)
Please sign in to comment.