File: tox.ini

package info (click to toggle)
send2trash 1.6.0~b1%2Bgit20210122.2eb3242-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 184 kB
  • sloc: python: 737; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 435 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
22
23
[tox]
envlist = py{27,34,35,36,37,38,39,310,3-win}
skip_missing_interpreters = True

[testenv]
platform = linux
commands =
    python setup.py test --test-suite tests.TestSuite

[testenv:py3-win]
platform = win
commands =
    python -m pip install pywin32
    python setup.py test --test-suite tests.TestSuite

[testenv:py27]
deps =
    configparser

[flake8]
exclude = .tox,env,build
max-line-length = 120
ignore = E731,E203,E501,W503