diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-15 21:43:11 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-15 21:43:11 -0400 |
commit | b43c5b81b76d687b50b05f05155838c69919c42c (patch) | |
tree | 5dc7996c226e6991ef7bb74fee2f51d30fd1767c /setuptools/tests | |
parent | 24fa288a98a14e6ec57b996b151a48203322c936 (diff) | |
download | external_python_setuptools-b43c5b81b76d687b50b05f05155838c69919c42c.tar.gz external_python_setuptools-b43c5b81b76d687b50b05f05155838c69919c42c.tar.bz2 external_python_setuptools-b43c5b81b76d687b50b05f05155838c69919c42c.zip |
Remove superfluous test and re-organize tests for clarity.
Diffstat (limited to 'setuptools/tests')
-rw-r--r-- | setuptools/tests/test_dist.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/setuptools/tests/test_dist.py b/setuptools/tests/test_dist.py index 6e8c45fd..97055d97 100644 --- a/setuptools/tests/test_dist.py +++ b/setuptools/tests/test_dist.py @@ -125,8 +125,6 @@ def __read_test_cases(): merge_dicts(base_attrs, { 'provides_extras': ['foo', 'bar'] }), marks=pytest.mark.xfail(reason="provides_extras not read")), - ('Missing author, missing author e-mail', - {'name': 'foo', 'version': '1.0.0'}), ('Missing author', {'name': 'foo', 'version': '1.0.0', @@ -135,10 +133,8 @@ def __read_test_cases(): {'name': 'foo', 'version': '1.0.0', 'author': 'Snorri Sturluson'}), - ('Missing author', - {'name': 'foo', - 'version': '1.0.0', - 'author': 'Snorri Sturluson'}), + ('Missing author and e-mail', + {'name': 'foo', 'version': '1.0.0'}), ] return test_cases |