mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
322a12f348
psutil 2.1.3 is replacing psutil 1.0.1. There are numerous bug fixes and feature enhancements in psutil worth obtaining. Source code was obtained from https://pypi.python.org/packages/source/p/psutil/psutil-2.1.3.tar.gz and uncompressed into python/psutil without modification except for the removal of the egg-info directory and the .travis.yml file. --HG-- extra : source : 697eb6db7d96dc21e817cd27a7e46ed4ab00f9bb
25 lines
505 B
INI
25 lines
505 B
INI
# Tox (http://tox.testrun.org/) is a tool for running tests
|
|
# in multiple virtualenvs. This configuration file will run the
|
|
# test suite on all supported python versions.
|
|
# To use it run "pip install tox" and then run "tox" from this
|
|
# directory.
|
|
|
|
[tox]
|
|
envlist = py26, py27, py32, py33, py34
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
flake8
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}/test
|
|
commands =
|
|
py.test {posargs}
|
|
flake8 --exclude=build,.tox,.git
|
|
|
|
[testenv:py26]
|
|
deps =
|
|
flake8
|
|
pytest
|
|
unittest2
|