@@ -465,7 +465,6 @@ def test_basic(self, tmpdir):
465465 'scripts = bin/one.py, bin/two.py\n '
466466 'eager_resources = bin/one.py, bin/two.py\n '
467467 'install_requires = docutils>=0.3; pack ==1.1, ==1.3; hey\n '
468- 'tests_require = mock==0.7.2; pytest\n '
469468 'setup_requires = docutils>=0.3; spack ==1.1, ==1.3; there\n '
470469 'dependency_links = http://some.com/here/1, '
471470 'http://some.com/there/2\n '
@@ -494,7 +493,6 @@ def test_basic(self, tmpdir):
494493 'spack ==1.1, ==1.3' ,
495494 'there' ,
496495 ])
497- assert dist .tests_require == ['mock==0.7.2' , 'pytest' ]
498496 assert dist .python_requires == '>=1.0, !=2.8'
499497 assert dist .py_modules == ['module1' , 'module2' ]
500498
@@ -521,9 +519,6 @@ def test_multiline(self, tmpdir):
521519 ' docutils>=0.3\n '
522520 ' pack ==1.1, ==1.3\n '
523521 ' hey\n '
524- 'tests_require = \n '
525- ' mock==0.7.2\n '
526- ' pytest\n '
527522 'setup_requires = \n '
528523 ' docutils>=0.3\n '
529524 ' spack ==1.1, ==1.3\n '
@@ -552,7 +547,6 @@ def test_multiline(self, tmpdir):
552547 'spack ==1.1, ==1.3' ,
553548 'there' ,
554549 ])
555- assert dist .tests_require == ['mock==0.7.2' , 'pytest' ]
556550
557551 def test_package_dir_fail (self , tmpdir ):
558552 fake_env (tmpdir , '[options]\n package_dir = a b\n ' )
0 commit comments