mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
make flake8 happy
This commit is contained in:
parent
1d1b7a674e
commit
8780a80c4d
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ def generate_yaml_tests(directory):
|
|||
|
||||
skip = case.pop("skip", False)
|
||||
assert skip in [False, True, 'old', 'new']
|
||||
if skip == True or skip == resolver:
|
||||
if skip is True or skip == resolver:
|
||||
case = pytest.param(case, marks=pytest.mark.xfail)
|
||||
|
||||
yield case
|
||||
|
|
Loading…
Reference in a new issue