File: tox.ini

package info (click to toggle)
python-tatsu 5.15.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 904 kB
  • sloc: python: 10,128; makefile: 54
file content (32 lines) | stat: -rw-r--r-- 462 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[tox]
envlist = py3{14,13,12,11,10}
skipsdist = True

[testenv]
whitelist_externals =
    echo
    rm

commands =
    ruff check --preview tatsu test examples
    mypy   --ignore-missing-imports --exclude "parsers|docs|tmp|build|dist" .
    pytest

deps =
    ruff
    pytest
    mypy

[pytest]
addopts =
    --disable-pytest-warnings
    -W ignore
# addopts = --verbose
norecursedirs =
    .ropeproject
    .tox
    .eggs
    parsers
    docs
    build
    tmp