summaryrefslogtreecommitdiff
path: root/changelog
AgeCommit message (Collapse)Author
2018-10-20Merge pull request #4207 from nicoddemus/recursive-dep-fixturesAnkit Goel
Improve error message when a recursive dependency between fixtures is detected
2018-10-20Issue a warning when a fixture named 'request' is collectedBruno Oliveira
Fix #611
2018-10-20Merge pull request #4204 from vbarbaresi/3340_log_hooksBruno Oliveira
Fix logging usage in hooks pytest_sessionstart/finish
2018-10-20Improve error message when a recursive dependency between fixtures is detectedBruno Oliveira
Fix #2909
2018-10-20Merge remote-tracking branch 'upstream/features' into davidszotten/stepwiseBruno Oliveira
2018-10-20Fix logging usage in hooks pytest_sessionstart/finish #3340Vincent Barbaresi
2018-10-19Merge pull request #4195 from nicoddemus/issue-3691Bruno Oliveira
Use safe_str() to format warning message about unicode in Python 2
2018-10-18Merge pull request #4196 from nicoddemus/better-signature-error-msg-4026Anthony Sottile
Improve error message when it is not possible to determine a function's signature
2018-10-18Use safe_str() to format warning message about unicode in Python 2Bruno Oliveira
Fix #3691
2018-10-18Merge pull request #4192 from asottile/fix_recwarn_stacklevelAnthony Sottile
Fix filename reported by `warnings.warn` when using `recwarn` under python2.
2018-10-18Improve error message when it is not possible to determine a function's ↵Bruno Oliveira
signature Fix #4026
2018-10-18Merge pull request #4190 from nicoddemus/merge-master-into-featuresBruno Oliveira
Merge master into features
2018-10-18Emulate resetting the warnings registry for python 2.xAnthony Sottile
2018-10-18Make --color more colorfulSven-Hendrik Haase
2018-10-17Merge remote-tracking branch 'upstream/master' into ↵Bruno Oliveira
RonnyPfannschmidt/bump-setuptools
2018-10-17fix #4179 - bring back the current testrun symlinkRonny Pfannschmidt
2018-10-17fix #4177 - pin setuptools>=40.0Ronny Pfannschmidt
2018-10-16Merge remote-tracking branch 'upstream/features' into merge-features-into-masterBruno Oliveira
2018-10-16Preparing release version 3.9.1Ronny Pfannschmidt
2018-10-16Merge branch 'release-3.9.0' of github.com:nicoddemus/pytest into release-3.9.1Ronny Pfannschmidt
2018-10-16Merge pull request #4167 from vbarbaresi/3533_junit_escape_skippedAnkit Goel
Fix #3533: properly escape raw XML object
2018-10-16Merge pull request #4159 from thisch/subclassedfileBruno Oliveira
Increase required verbosity level for debug output
2018-10-16add changelog for #3533Vincent Barbaresi
2018-10-15Preparing release version 3.9.0Bruno Oliveira
2018-10-15we have a pr number nowDavid Szotten
2018-10-15draft changelogDavid Szotten
2018-10-15Increase required verbosity level for debug outputThomas Hisch
To show the subclassed file in legacy test suits in the runtest output you have to set the verbosity level to at least "-vv" now. Closes #3211
2018-10-15Merge remote-tracking branch 'upstream/master' into merge-master-into-featuresBruno Oliveira
2018-10-15Merge pull request #4153 from asottile/syntax_warning_filenameAnthony Sottile
Display the filename when encountering `SyntaxWarning`.
2018-10-15Merge pull request #4149 from RonnyPfannschmidt/modern-buildBruno Oliveira
modernize packaging for setuptools>30.3
2018-10-15Check off PR requirementsTomer Keren
2018-10-15Merge pull request #4145 from labcodes/4098Ankit Goel
Add returncode argument to pytest.exit
2018-10-15changelogRonny Pfannschmidt
2018-10-14Display the filename when encountering `SyntaxWarning`.Anthony Sottile
```console $ cd t && rm -rf __pycache__ && pytest t.py -q -c /dev/null; cd .. . [100%] =============================== warnings summary =============================== <unknown>:2: DeprecationWarning: invalid escape sequence \. -- Docs: https://docs.pytest.org/en/latest/warnings.html 1 passed, 1 warnings in 0.01 seconds ``` ```console $ cd t && rm -rf __pycache__ && pytest t.py -q -c /dev/null; cd .. . [100%] =============================== warnings summary =============================== /tmp/pytest/t/t.py:2: DeprecationWarning: invalid escape sequence \. '\.wat' -- Docs: https://docs.pytest.org/en/latest/warnings.html 1 passed, 1 warnings in 0.01 seconds ```
2018-10-14Update changelog to better readingJose Carlos Menezes
2018-10-14fix #4135 - handle symlinks in tmp path cleanupRonny Pfannschmidt
2018-10-14Update changelogJose Carlos Menezes
2018-10-14Merge pull request #4132 from blueyed/pdb-internal-dupeDaniel Hahler
Do not print (duplicate) INTERNALERROR with --pdb.
2018-10-13Merge pull request #4086 from jeffreyrack/4063-exclude-0-durationsBruno Oliveira
Exclude durations that are 0.00 seconds long.
2018-10-13Resolve symlinks for argsDaniel Hahler
This fixes running `pytest tests/test_foo.py::test_bar`, where `tests` is a symlink to `project/app/tests`: previously `project/app/conftest.py` would be ignored for fixtures then.
2018-10-13Do not print INTERNALERROR with --pdbDaniel Hahler
This gets printed by the terminal reporter already, and currently results in the same error being displayed twice, e.g. when raising an `Exception` manually from `pytest.debugging.pytest_exception_interact`.
2018-10-13Update messaging for --durations when not in verbose mode.Jeffrey Rackauckas
2018-10-13Merge pull request #4129 from nicoddemus/merge-master-into-featuresBruno Oliveira
Merge master into features (prepare for 3.9)
2018-10-13Merge remote-tracking branch 'upstream/master' into merge-master-into-featuresBruno Oliveira
2018-10-12Improve tracebacks for ImportErrors in conftest.py filesBruno Oliveira
Fix #3332
2018-10-12Update usefixtures documentationJose Carlos Menezes
Clarifying that it can't be used with fixture functions
2018-10-12Merge pull request #3988 from RonnyPfannschmidt/tmpdir-port-pathlibBruno Oliveira
Tmpdir port pathlib
2018-10-12Merge pull request #4077 from nicoddemus/short-usage-errorsBruno Oliveira
Improve internal error messages
2018-10-11address review commentsRonny Pfannschmidt
2018-10-11add changelogRonny Pfannschmidt