parent
ec96ab5286
commit
90306e0089
|
@ -2,6 +2,7 @@ Changes between 1.1.2 and 1.1.1
|
||||||
=====================================
|
=====================================
|
||||||
|
|
||||||
- fix assert reinterpreation that sees a call containing "keyword=..."
|
- fix assert reinterpreation that sees a call containing "keyword=..."
|
||||||
|
- skip some install-tests if no execnet is available
|
||||||
|
|
||||||
Changes between 1.1.1 and 1.1.0
|
Changes between 1.1.1 and 1.1.0
|
||||||
=====================================
|
=====================================
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
import py
|
import py
|
||||||
import subprocess
|
import subprocess
|
||||||
import os
|
import os
|
||||||
import execnet
|
|
||||||
|
execnet = py.test.importorskip("execnet")
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -2,6 +2,8 @@ import py
|
||||||
|
|
||||||
pytest_plugins = '_pytest doctest pytester'.split()
|
pytest_plugins = '_pytest doctest pytester'.split()
|
||||||
|
|
||||||
|
collect_ignore = ['build', 'doc/_build']
|
||||||
|
|
||||||
|
|
||||||
rsyncdirs = ['conftest.py', 'bin', 'py', 'doc', 'testing']
|
rsyncdirs = ['conftest.py', 'bin', 'py', 'doc', 'testing']
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue