File: tox.ini

package info (click to toggle)
python-async-lru 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 232 kB
  • sloc: python: 1,203; makefile: 17
file content (15 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[tox]
envlist =
    py3{8,9,10,11}
skip_missing_interpreters = True

[testenv]
deps = -r{toxinidir}/requirements.txt
commands =
    flake8 --show-source async_lru
    isort --check-only async_lru --diff

    flake8 --show-source tests
    isort --check-only -rc tests --diff

    {envpython} -m pytest