We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e5e344 commit 1dc077aCopy full SHA for 1dc077a
setup.py
@@ -169,6 +169,7 @@ def read(*parts):
169
'Topic :: Software Development :: Libraries :: Python Modules',
170
'Topic :: Software Development :: Testing',
171
],
172
+ python_requires=">=3.5",
173
174
# The following makes the plugin available to pytest
175
entry_points={
tests/test_live_server.py
@@ -42,7 +42,7 @@ def test_a(live_server):
42
'example.com:%d' % live_server.port
43
''')
44
45
- result = appdir.runpytest('-v', '-o=live_server_scope=function')
+ result = appdir.runpytest('-v', '-o', 'live_server_scope=function')
46
result.stdout.fnmatch_lines(['*PASSED*'])
47
assert result.ret == 0
48
0 commit comments