Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfox committed Jan 10, 2024
1 parent 1883ad0 commit b2d8a19
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ install_requires =
hupper == 1.10.2
iniconfig == 1.1.1
itsdangerous == 1.1.0
# importlib-metadata == 4.13.0
jinja2 == 2.11.3
mako == 1.1.4
markupsafe == 1.1.1
Expand Down Expand Up @@ -53,14 +54,14 @@ dev =
attrs == 20.3.0
coverage == 5.5
fakeredis == 1.5.0
flake8 == 3.9.0
flake8 == 7.0.0
freezegun == 1.1.0
mccabe == 0.6.1
mccabe == 0.7.0
packaging == 20.9
pluggy == 0.13.1
py == 1.11.0
pycodestyle == 2.7.0
pyflakes == 2.3.1
pycodestyle == 2.11.1
pyflakes == 3.2.0
pyparsing == 2.4.7
pytest == 7.4.3
sortedcontainers == 2.3.0
Expand Down
4 changes: 2 additions & 2 deletions tests/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
def redis(app, client):
yield

if type(redis_.__local) != FakeRedis:
if type(redis_.__local) is not FakeRedis:
assert False, 'you should be using fakeredis!'
return

Expand Down Expand Up @@ -67,7 +67,7 @@ def client(app):


def _run(args):
subprocess.run(args)#, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
subprocess.run(args) # , stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)


@pytest.fixture(scope='session')
Expand Down

0 comments on commit b2d8a19

Please sign in to comment.