forked from mark-adams/pytest-test-groups
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull changes by @craigds to run tests in original order
- Loading branch information
Showing
9 changed files
with
53 additions
and
42 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 |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
build/ | ||
dist/ | ||
.DS_Store | ||
.idea/ | ||
venv/ |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,14 +10,15 @@ def read(fname): | |
|
||
|
||
setup( | ||
name="pytest-test-groups", | ||
name="pytest-split-tests", | ||
description=('A Pytest plugin for running a subset of your tests by ' | ||
'splitting them in to equally sized groups.'), | ||
url='https://github.com/mark-adams/pytest-test-groups', | ||
author='Mark Adams', | ||
author_email='[email protected]', | ||
packages=['pytest_test_groups'], | ||
version='1.0.3', | ||
'splitting them in to equally sized groups. Forked from ' | ||
'Mark Adams\' original project pytest-test-groups.'), | ||
url='https://github.com/wchill/pytest-split-tests', | ||
author='Eric Ahn', | ||
author_email='[email protected]', | ||
packages=['pytest_split_tests'], | ||
version='1.0.4', | ||
long_description=read('README.rst'), | ||
install_requires=['pytest>=2.5'], | ||
classifiers=['Development Status :: 5 - Production/Stable', | ||
|
@@ -27,13 +28,13 @@ def read(fname): | |
'Programming Language :: Python', | ||
'Topic :: Software Development :: Testing', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5' | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7' | ||
], | ||
entry_points={ | ||
'pytest11': [ | ||
'test-groups = pytest_test_groups', | ||
'split-tests = pytest_split_tests', | ||
] | ||
}, | ||
) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py{27,33,34,35}, flake8 | ||
envlist = py{27,35,36,37}, flake8 | ||
|
||
[testenv] | ||
commands = | ||
|