Skip to content
Snippets Groups Projects
  • ulif's avatar
    1324faf2
    Drop Python3.2 support. · 1324faf2
    ulif authored
    `pip`, `wheel` and other fundamental helpers dropped or are going
    to drop py3.2. It makes no sense to stick with it.
    1324faf2
    History
    Drop Python3.2 support.
    ulif authored
    `pip`, `wheel` and other fundamental helpers dropped or are going
    to drop py3.2. It makes no sense to stick with it.
tox.ini 499 B
[tox]
envlist = flake8, pypy, py26, py27, py33, py34, py35, coverage

[testenv]
usedevelop=True
recreate=True
# py.test 2.8.2 cannot handle --doctest-modules and autouse fixtures
# See https://github.com/pytest-dev/pytest/issues/1057
deps=pytest>=2.8.3
commands=
  py.test

[testenv:flake8]
deps=flake8
commands=flake8 diceware tests setup.py

[testenv:coverage]
deps=coverage
commands=
  coverage erase
  coverage run setup.py test
  coverage report --include='diceware*,setup.py' --fail-under=100