File: tox.ini

package info (click to toggle)
pubpaste 0.9.0
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 180 kB
  • sloc: python: 1,094; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 330 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tox]
envlist = flake8,black,mypy

[testenv:flake8]
skip_install = true
deps = flake8
commands = flake8 pubpaste.py

[testenv:black]
skip_install = true
deps = black
commands = black --diff --check pubpaste.py

[testenv:mypy]
skip_install = true
deps = mypy
commands = python -m mypy --install-types --non-interactive pubpaste.py