File: tox.ini

package info (click to toggle)
python-channels-redis 4.0.0-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 328 kB
  • sloc: python: 1,911; sh: 6; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 326 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tox]
envlist =
    py{37,38,39,310}
    qa

[testenv]
usedevelop = true
extras = tests
commands =
    pytest -v {posargs}

[testenv:qa]
skip_install=true
deps =
    black
    flake8
    isort
commands =
    flake8 channels_redis tests
    black --check channels_redis tests
    isort --check-only --diff channels_redis tests