Skip to content
Snippets Groups Projects
Commit 2fb1ac22 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Correct parsing of "./setup.py test --pytest-args ...".

parent e3a67c73
No related branches found
No related tags found
No related merge requests found
Pipeline #127611 passed with warnings
......@@ -23,6 +23,8 @@ class PyTest(TestCommand):
def finalize_options(self):
super().finalize_options()
if self.pytest_args:
self.pytest_args = [self.pytest_args]
def run_tests(self):
# Inline import, otherwise the eggs aren't loaded
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment