Codebase list python-procrunner / ea36474
remove pytest-runner dependency Markus Gerstel 3 years ago
3 changed file(s) with 1 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
3636 # Note that you must use the environment variable %PYTHON% to refer to
3737 # the interpreter you're using - Appveyor does not do anything special
3838 # to put the Python version you want to use on PATH.
39 - "%PYTHON%\\python.exe setup.py test"
39 - "%PYTHON%\\python.exe -m pytest"
4040
4141 after_test:
4242 # This step builds your wheels.
33 mock==3.0.5
44 pip==19.1.1
55 pytest==4.5.0
6 pytest-runner==5.1
76 Sphinx==1.8.5
87 tox==3.13.1
98 twine==1.13.0
00 #!/usr/bin/env python
11 # -*- coding: utf-8 -*-
22
3 import sys
43 from setuptools import setup, find_packages
54
65 with open("README.rst") as readme_file:
1211 requirements = []
1312
1413 setup_requirements = []
15 needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
16 if needs_pytest:
17 setup_requirements.append("pytest-runner")
1814
1915 test_requirements = ["mock", "pytest"]
2016