1pytest-2.3.1: fix regression with factory functions
2===========================================================================
3
4pytest-2.3.1 is a quick follow-up release:
5
6- fix issue202 - regression with fixture functions/funcarg factories:
7  using "self" is now safe again and works as in 2.2.4.  Thanks
8  to Eduard Schettino for the quick bug report.
9
10- disable pexpect pytest self tests on Freebsd - thanks Koob for the
11  quick reporting
12
13- fix/improve interactive docs with --markers
14
15See
16
17     http://pytest.org/
18
19for general information.  To install or upgrade pytest:
20
21    pip install -U pytest # or
22    easy_install -U pytest
23
24best,
25holger krekel
26
27
28Changes between 2.3.0 and 2.3.1
29-----------------------------------
30
31- fix issue202 - fix regression: using "self" from fixture functions now
32  works as expected (it's the same "self" instance that a test method
33  which uses the fixture sees)
34
35- skip pexpect using tests (test_pdb.py mostly) on freebsd* systems
36  due to pexpect not supporting it properly (hanging)
37
38- link to web pages from --markers output which provides help for
39  pytest.mark.* usage.
40