pytest2/src/_pytest/config
Bruno Oliveira b48f51eb03 Use Path() objects to store conftest files
Using Path().resolve() is better than py.path.realpath because
it resolves to the correct path/drive in case-insensitive file systems (#5792):

>>> from py.path import local
>>> from pathlib import Path
>>>
>>> local('d:\\projects').realpath()
local('d:\\projects')
>>> Path('d:\\projects').resolve()
WindowsPath('D:/projects')

Fix #5819
2019-09-12 08:05:50 -03:00
..
__init__.py Use Path() objects to store conftest files 2019-09-12 08:05:50 -03:00
argparsing.py surpressing -> suppressing 2019-08-01 15:11:38 +02:00
exceptions.py pre-commit run fix-encoding-pragma --all-files 2019-06-03 12:08:01 -03:00
findpaths.py Merge master into features 2019-08-02 16:52:51 +02:00