You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally reported by: Jurko Gospodnetić (BitBucket: jurko, GitHub: jurko)
When you run py.test --fixtures you get the following output:
#!text
capfd
enables capturing of writes to file descriptors 1 and 2 and makes
captured output available via ``capsys.readouterr()`` method calls
which return a ``(out, err)`` tuple.
Fixespytest-dev#452
I ended up making a couple of other normalizations to numeric literals
too (lowercase everything, don't allow leading or trailing . in floats,
remove redundant + sign in exponent). I don't care too much about those,
so I'm happy to change the behavior there.
For reference, here is Python's grammar for numeric literals:
https://docs.python.org/3/reference/lexical_analysis.html#numeric-literals
Originally reported by: Jurko Gospodnetić (BitBucket: jurko, GitHub: jurko)
When you run
py.test --fixtures
you get the following output:which refers to
capsys
instead ofcapfd
.The text was updated successfully, but these errors were encountered: