-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Merge master into features #5856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Refactoring this in order to support chained exceptions more easily. Related to pytest-dev#5786
Using a relative import like before was not very nice
Co-authored-by: Bruno Oliveira <[email protected]>
…badcase Fix pytest with mixed up filename casing.
Serialize/deserialize chained exceptions
Due to the flaky tests in 3.5.0, drop running py35 with xdist for now in the hope we get better error messages. Ref: pytest-dev#5795
Fix the scope behavior with indirect fixtures
Mark flaky test as xfail on Python 3.5.0
Fix self reference in function scoped fixtures
Fix pythonpath anchor
Fix for Python 4: replace unsafe PY3 with PY2
This causes flaky test failures (crashes). Closes pytest-dev#5795.
ci: Travis: do not test with 3.5.0
Fix pypy3.6 on windows
Remove reference to the `message` argument in the docs as it was deprecated in pytest-dev#4539
Update doc regarding pytest.raises
…ev#5839) Clarify docs by showing tox.ini considered before setup.cfg
Using Path().resolve() is better than py.path.realpath because it resolves to the correct path/drive in case-insensitive file systems (pytest-dev#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 pytest-dev#5819
The introduction was reverted by cd29d56
Fix regression due to different cases on Windows
This changes `_repr_failure_py` to use `tbfilter=False` always.
Handle --fulltrace with pytest.raises
nicoddemus
approved these changes
Sep 17, 2019
nicoddemus
approved these changes
Sep 17, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Conflicts:
src/_pytest/reports.py
(via 7259c45, moved the type annotation; setting it to
Nonewas removed in 3c82b1c already)