view tox.ini @ 7167:b4a5632733d9 stable

vcs: Fix internal server error when trying to get diff from Mercurial for paths that include globbing patterns (Issue #308): - Treat passed-in paths as exact matches, dissallowing any type of globbing/regex/pattern matching. - Added accompanying tests.
author Branko Majic <branko@majic.rs>
date Tue, 13 Feb 2018 16:23:55 +0100
parents 768989c595aa
children 6a83b399bb3c
line wrap: on
line source

[tox]
minversion = 1.8
envlist = py{26,27}-{pytest,nose}

[testenv]
setenv =
    PYTHONHASHSEED = 0
deps =
    nose: nose
    pytest: pytest
commands =
    nose: nosetests {posargs}
    pytest: py.test {posargs}