The source project of this merge request has been removed.
Remove pytest-runner, use pypa build and installer
1 unresolved thread
1 unresolved thread
Do pytest-runner removal, and use python-build and python-installer.
Note: pytest-runner was set as 'setup_requires' in setup.py, but it was unnecessary. pytest is already in test_requires.
Merge request reports
Activity
added priority3-normal statusunconfirmed labels
assigned to @felixonmars
16 prepare() { 17 cd hypothesis-fspaths-$pkgver 18 # remove superfluous dependency from 'setup_requires' 19 sed -i '/pytest-runner/d' setup.py 20 } 21 15 22 build() { 16 23 cd hypothesis-fspaths-$pkgver 17 python setup.py build 24 python -m build --wheel --no-isolation 18 25 } 19 26 20 27 check() { 21 28 cd hypothesis-fspaths-$pkgver 22 python setup.py pytest 29 pytest -v
Please register or sign in to reply