Skip to content

Commit c4bdb57

Browse files
committed
Install the dev dependencies with tox's own mechanism
1 parent 3c01790 commit c4bdb57

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

social_core/backends/loginradius.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def request_access_token(self, *args, **kwargs):
3737
return self.get_json(
3838
params={"token": self.data.get("token"), "secret": self.setting("SECRET")},
3939
*args,
40-
**kwargs,
40+
**kwargs
4141
)
4242

4343
def user_data(self, access_token, *args, **kwargs):

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ envlist = py38,py39,py310,py311,py312
99
[testenv]
1010
passenv = *
1111
deps =
12-
py{38,39,310,311,312}: -e .[dev]
12+
py{38,39,310,311,312}: -e .[dev,all]
1313
commands =
14-
py{38,39,310,311,312}: pip install -e .[all]
1514
pytest {posargs:-v --cov=social_core}

0 commit comments

Comments
 (0)