test_ok1/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
..
code Move TWMock class to a fixture 2019-08-26 11:32:57 -03:00
example_scripts Validate xunit2 files against the schema 2019-08-09 10:55:06 -03:00
examples
freeze
io saferepr: Avoid indirect function calls 2019-07-15 17:07:58 +03:00
logging Show session duration in human-readable format 2019-08-10 10:45:53 -03:00
python Merge pull request #5768 from robholt/fixture-class-instance 2019-08-30 12:31:16 -03:00
acceptance_test.py Merge remote-tracking branch 'upstream/master' into mm 2019-08-15 10:03:52 -03:00
conftest.py Move TWMock class to a fixture 2019-08-26 11:32:57 -03:00
deprecated_test.py Merge master into features 2019-08-02 16:52:51 +02:00
test_argcomplete.py
test_assertion.py test_assertion: minor cleanup 2019-08-17 21:38:52 +02:00
test_assertrewrite.py assertrepr_compare: prefer same maxsize 2019-08-12 03:41:14 +02:00
test_cacheprovider.py
test_capture.py
test_collection.py Fix RuntimeError when trying to collect package with "__init__.py" only 2019-08-05 17:52:21 +02:00
test_compat.py check that tests that are partial staticmethods are supported (#5701) 2019-08-15 09:12:01 -03:00
test_config.py Merge master into features 2019-08-02 16:52:51 +02:00
test_conftest.py Use Path() objects to store conftest files 2019-09-12 08:05:50 -03:00
test_doctest.py
test_entry_points.py
test_faulthandler.py
test_helpconfig.py
test_junitxml.py Remove xfail marker from test_runs_twice_xdist 2019-08-09 10:55:06 -03:00
test_mark.py Merge master into features 2019-08-02 16:52:51 +02:00
test_modimport.py
test_monkeypatch.py
test_nodes.py
test_nose.py didnt -> didn't 2019-08-01 15:10:39 +02:00
test_parseopt.py
test_pastebin.py Add test for #5782 2019-08-24 14:41:06 -03:00
test_pathlib.py
test_pdb.py Fix for Python 4: replace unsafe PY3 with PY2 2019-09-05 18:06:47 +03:00
test_pluginmanager.py
test_pytester.py Show session duration in human-readable format 2019-08-10 10:45:53 -03:00
test_recwarn.py Revert "Let context-managers for raises and warns handle unknown keyword arguments" 2019-07-14 14:28:21 +03:00
test_reports.py Serialize/deserialize chained exceptions 2019-08-29 20:23:44 -03:00
test_resultlog.py
test_runner.py
test_runner_xunit.py
test_session.py
test_skipping.py
test_stepwise.py In test_xfail_handling, only remove __pycache__ if it exists 2019-07-26 02:23:14 +02:00
test_terminal.py Show session duration in human-readable format 2019-08-10 10:45:53 -03:00
test_tmpdir.py Merge master into features 2019-08-02 16:52:51 +02:00
test_unittest.py Merge master into features 2019-08-02 16:52:51 +02:00
test_warning_types.py
test_warnings.py Merge remote-tracking branch 'upstream/master' into mm 2019-08-15 10:03:52 -03:00