New issue 544: pytest 2.6 remove some strings in pathname https://bitbucket.org/hpk42/pytest/issue/544/pytest-26-remove-some-strings-in-pathname
mapi: in pytest 2.6 If pathname include '@[0-9]' , these strings would removed. here is some sample. ``` #!shell % ls > mycode@2 mycode@abc % py.test mycode@2/test > ============================= test session starts > ============================== > platform linux2 -- Python 2.7.6 -- py-1.4.22 -- pytest-2.6.0 > ERROR: file not found: mycode/test > > =============================== in 0.00 seconds > =============================== % py.test mycode@abc/test > ============================= test session starts > ============================== > platform linux2 -- Python 2.7.6 -- py-1.4.22 -- pytest-2.6.0 > collected 0 items > > =============================== in 0.00 seconds > =============================== ``` `mycode@abc/test` is works, but `mycode@2/test` replaced `mycode/test` _______________________________________________ pytest-commit mailing list pytest-commit@python.org https://mail.python.org/mailman/listinfo/pytest-commit