-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Merge master into features #6432
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
blueyed
merged 43 commits into
pytest-dev:features
from
blueyed:merge-master-into-features
Jan 10, 2020
Merged
Merge master into features #6432
blueyed
merged 43 commits into
pytest-dev:features
from
blueyed:merge-master-into-features
Jan 10, 2020
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
While using pytest-repeat, I noticed the previous implementation is slow for a large number of duplicate test ids. To optimize, this commit reduces the amount of data copied and avoids using `in` with List (unhashable type, and therefore is very slow for many elements).
Optimized renaming of test parameter ids
- added a test to check this condition Signed-off-by: Alexandre Mulatinho <[email protected]>
fix typos in docs
This includes our current full matrix (windows, linux and macos), for evaluting purposes. We should disconsider failures when evaluating PRs. TODO: - deploy - coverage - github release notes Even with the above missing, I still believe it would be nice to merge this and have GitHub actions working in parallel so we can evaluate performance and usability from now on.
Preparing release version 4.6.8
…t-dev#6361) Merge pull request pytest-dev#6360 from asottile/release-4.6.8
…dev#6362) Update release notes script after CHANGELOG changed location
Improve docs so regen doesn't leak temp directories
Add GitHub actions for CI
…nction delete inspect.getargspect() as is deprecated since Python 3.0
* Rearrange section about context manager to be in order * Link to `pytest.warns` and `recwarn` since a reader going top to bottom won't have seen about those yet. * Used only context manager form in the example; the call form is somewhat obsolete and is mentioned in the reference docs already. * Reuse the 'myfunction' from first example on the second one Co-Authored-By: Hugo van Kemenade <[email protected]> Co-Authored-By: Hugo van Kemenade <[email protected]>
Improve warnings docs
Azure Pipelines: Test on Python 3.8
) pytester: quick fix error introduced in pytest-dev#5990
Added how to reserve an issue to yourself when contributing
minor: split doc with _early_rewrite_bailout
Fix `RunResult.parseoutcomes` (follow-up to pytest-dev#6353)
Merge pull request pytest-dev#6392 from hugovk/4.6-maintenance-2020
Update copyright year to 2020
I've updated the text and incorporated the topics from pytest-dev#5275, so this can now be part of the official docs, and pytest-dev#5275 can be closed/unpinned. Closes pytest-dev#5275
Preparing release version 4.6.9
…t-dev#6403) Merge pull request pytest-dev#6391 from asottile/release-4.6.9
…cs-onward Update py27/py34 deprecation docs
Tracebacks coming from remote processes crated by the multiprocess module will contain "RemoteTracebacks" which don't have a 'reprcrash' attribute Fix pytest-dev#5971
Unifying black version in pre-commit config file
As requested in review
Fix serialization of 'None' reprcrashes
Both references were referencing links from Python because of our intersphinx mapping in `conf.py`: intersphinx_mapping = {"python": ("https://docs.python.org/3", None)} Because Python's docs explicitly define both references, Sphinx fallbacks to them instead of generating implicit references as was expected. Fix pytest-dev#6397
Fix wrong 'changelog' and 'reference' links in docs
Corrects grammar error in "Support pytest" section.
Fix grammar in README
nicoddemus
approved these changes
Jan 10, 2020
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.
No description provided.