Skip to content

Commit c0c63b4

Browse files
Update tox to show installed dependencies
1 parent bbc016e commit c0c63b4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tox.ini

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,15 @@ deps =
2525
-r requirements/tests.txt
2626
commands_pre =
2727
noflaskbabel: pip uninstall -y flask-babel
28-
commands = pytest -v --tb=short --basetemp={envtmpdir} flask_admin/tests {posargs}
28+
commands =
29+
pip freeze
30+
pytest -v --tb=short --basetemp={envtmpdir} flask_admin/tests {posargs}
2931

3032
[testenv:py38-min]
3133
deps = -r requirements-skip/tests-min.txt
32-
commands = pytest -v --tb=short --basetemp={envtmpdir} flask_admin/tests -W 'default::DeprecationWarning' {posargs}
34+
commands =
35+
pip freeze
36+
pytest -v --tb=short --basetemp={envtmpdir} flask_admin/tests -W 'default::DeprecationWarning' {posargs}
3337

3438
[testenv:style]
3539
deps = pre-commit

0 commit comments

Comments
 (0)