-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixes compatibility issues with pytest 4.0.0
* Tests included in the source distribution as requested in #35
- Loading branch information
Showing
5 changed files
with
24 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
include LICENSE | ||
include README.rst | ||
graft tests | ||
|
||
recursive-exclude * __pycache__ | ||
recursive-exclude * *.py[co] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ def read(fname): | |
|
||
setup( | ||
name='pytest-random-order', | ||
version='1.0.2', | ||
version='1.0.3', | ||
author='Jazeps Basko', | ||
author_email='[email protected]', | ||
maintainer='Jazeps Basko', | ||
|
@@ -23,16 +23,13 @@ def read(fname): | |
url='https://github.com/jbasko/pytest-random-order', | ||
description='Randomise the order in which pytest tests are run with some control over the randomness', | ||
long_description=read('README.rst'), | ||
py_modules=[ | ||
'random_order.bucket_types', | ||
'random_order.cache', | ||
'random_order.config', | ||
'random_order.plugin', | ||
'random_order.shuffler', | ||
packages=[ | ||
'random_order', | ||
], | ||
include_package_data=True, | ||
python_requires=">=3.5.0", | ||
install_requires=[ | ||
'pytest>=2.9.2', | ||
'pytest>=3.0.0', | ||
], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
|