Update pytest in requirements.txt from 3.0.7 to 3.3.2 #3
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.
Dependencies.io has updated
pytest
(a pypi dependency inrequirements.txt
) from "3.0.7" to "3.3.2".3.3.2
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.3.1
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.3.0
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.2.5
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.2.4
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.2.3
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.2.2
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.2.1
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.2.0
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.1.3
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.1.2
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.1.1
No content found. Please open an issue at https://github.com/dependencies-io/support if you think this content could have been found.
3.1.0
New Features
The
pytest-warnings
plugin has been integrated into the core andnow
pytest
automatically captures and displays warnings at the endof the test session.
Thanks nicoddemus for the PR.
Added
junit_suite_name
ini option to specify root<testsuite>
name for JUnit XML reports
(#533).
Added an ini option
doctest_encoding
to specify which encoding touse for doctest files. Thanks wheerd
for the PR
(#2101).
pytest.warns
now checks for subclass relationship rather thanclass equality. Thanks lesteve for
the PR (#2166)
pytest.raises
now asserts that the error message matches a text orregex with the
match
keyword argument. ThanksKriechi for the PR.
pytest.param
can be used to declare test parameter sets with marksand test ids. Thanks
RonnyPfannschmidt for the
PR.
Changes
prepare the removal of preloadconfig in pytest 4.0 Thanks to
RonnyPfannschmidt for the
PR.
Thanks fogo for the PR.
setting a
__test__
attribute toFalse
in the class body(#2007). Thanks
to syre for the report and
lwm for the PR.
schema. If the same test fails with failure in call and then errors
in teardown we split testcase element into two, one containing the
error and the other the failure.
(#2228) Thanks
to kkoukiou for the PR.
url
attribute will now properly write thisto junitxml. Thanks fushi for the PR
(#1874).
Also update the truncation message to make it clearer that pytest
truncates all assertion messages if verbosity < 2
(#1512). Thanks
mattduck for the PR
--pdbcls
no longer implies--pdb
. This makes it possible to useaddopts=--pdbcls=module.SomeClass
onpytest.ini
. Thanksdavidszotten for the PR
(#1952).
RecordedWarning into
namedtuple
, to give it a comprehensible reprwhile preventing unwarranted modification.
ensure a iteration limit for _pytest.compat.get_real_func. Thanks
RonnyPfannschmidt for the
report and PR.
right after loading installed plugins. This makes it easy to write
hooks for plugins which will be loaded during collection, for
example using the
pytest_plugins
special variable(#1821). Thanks
nicoddemus for the PR.
pytest_make_parametrize_id()
hook to acceptargname
as anadditional parameter. Thanks
unsignedint for the PR.
venv
to the defaultnorecursedirs
setting. ThanksThe-Compiler for the PR.
PluginManager.import_plugin
now accepts unicode plugin names inPython 2. Thanks reutsharabani
for the PR.
using both
--lf
and--ff
, only the last failed tests are run.Thanks ojii for the PR.
placeholders. This significantly reduces change-noise as different
contributors regnerate the documentation on different platforms.
Thanks RonnyPfannschmidt
for the PR.
consider pytest_plugins on all plugin modules Thanks
RonnyPfannschmidt for the
PR.
Bug Fixes
AttributeError
onsys.stdout.buffer
/sys.stderr.buffer
while using
capsys
fixture in python 3.(#1407). Thanks
to asottile.
DontReadFromInput
class to throwio.UnsupportedOperation
errors rather than ValueErrors in thefileno
method(#2276). Thanks
metasyn and
vlad-dragos for the PR.
message contains non-ascii characters
(#2336). Thanks
fabioz for the report and
nicoddemus for the PR.
(#1937) Thanks
skylarjhdownes for the PR.
(#2369). Thanks
Kodiologist for the PR.
wrong args
(#2383). Thanks
The-Compiler for the report and
robin0371 for the PR.