Files
pytest2/testing
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
..
2019-08-26 11:32:57 -03:00
2019-08-26 11:32:57 -03:00
2019-08-02 16:52:51 +02:00
2019-08-02 16:52:51 +02:00
2019-08-02 16:52:51 +02:00
2019-08-01 15:10:39 +02:00
2019-08-24 14:41:06 -03:00
2019-08-02 16:52:51 +02:00
2019-08-02 16:52:51 +02:00