Skip to content

Commit 1a0246c

Browse files
fix: Move dev-only dependencies to [dev-packages] section (appium#772)
1 parent 83f3c81 commit 1a0246c

File tree

2 files changed

+10
-17
lines changed

2 files changed

+10
-17
lines changed

Pipfile

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,19 @@ url = "https://pypi.org/simple"
44
verify_ssl = true
55

66
[dev-packages]
7+
black = "~=22.8.0"
8+
httpretty = "~=1.1"
9+
isort = "~=5.10"
10+
mypy = "~=0.971"
11+
mock = "~=4.0"
712
pre-commit = "~=2.20"
8-
9-
[packages]
10-
selenium = "~=4.4"
11-
12-
black = "==22.8.0"
13-
13+
pylint = "~=2.15.2"
1414
pytest = "~=7.1"
1515
pytest-cov = "~=3.0"
16-
16+
python-dateutil = "~=2.8"
1717
tox = "~=3.26"
1818
typing-extensions = "~=4.3"
19-
20-
httpretty = "~=1.1"
21-
python-dateutil = "~=2.8"
2219
types-python-dateutil = "~=2.8"
23-
mock = "~=4.0"
2420

25-
pylint = "~=2.15.3"
26-
astroid = "~=2.12"
27-
isort = "~=5.10"
28-
29-
mypy = "~=0.971"
21+
[packages]
22+
selenium = "~=4.4"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ deps =
1010
pipenv
1111
commands =
1212
pipenv lock --clear
13-
pipenv install
13+
pipenv install --dev
1414
./ci.sh

0 commit comments

Comments
 (0)