Skip to content
Snippets Groups Projects
Commit 28daf38a authored by John Wiggins's avatar John Wiggins Committed by GitHub
Browse files

Call set() correctly

parent 7685f562
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -4,7 +4,7 @@ import sys
 
from setuptools import setup
 
needs_pytest = set('pytest', 'test', 'ptr').intersection(sys.argv)
needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
 
 
Loading
Loading
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