From 8630c27c75434db8543638d7160f02ba1a0d36eb Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Tue, 18 Aug 2015 08:45:18 +0200 Subject: [PATCH] flake8 fixes --- CHANGELOG | 1 + xdist/__init__.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 6cd1023..fd39bb4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -16,6 +16,7 @@ - new "--max-slave-restart" option that can be used to control maximum number of times pytest-xdist can restart slaves due to crashes. Thanks to Anatoly Bubenkov for the report and Bruno Oliveira for the PR. + - release as wheel - "-n" option now can be set to "auto" for automatic detection of number diff --git a/xdist/__init__.py b/xdist/__init__.py index 2df2481..4e791df 100644 --- a/xdist/__init__.py +++ b/xdist/__init__.py @@ -1 +1,2 @@ +__all__ = ['__version__'] from xdist._version import version as __version__