test_ok2/src
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 ():

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

Fix 
2019-09-12 08:05:50 -03:00
..
_pytest Use Path() objects to store conftest files 2019-09-12 08:05:50 -03:00
pytest.py Remove 'RemovedInPytest4Warning' 2019-06-30 13:31:39 -03:00