Skip to content

Commit

Permalink
Silence expected stderr (#621)
Browse files Browse the repository at this point in the history
* Silence expected stderr output during test

* Change based on PR comment
  • Loading branch information
BeyondEvil authored and zsol committed Nov 29, 2018
1 parent 4802280 commit 4809e36
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions tests/test_black.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
import asyncio
from concurrent.futures import ThreadPoolExecutor
from contextlib import contextmanager
from contextlib import contextmanager, redirect_stderr
from functools import partial, wraps
from io import BytesIO, TextIOWrapper
import os
Expand Down Expand Up @@ -1454,15 +1454,16 @@ async def test_blackd_py36(self) -> None:
@unittest.skipUnless(has_blackd_deps, "blackd's dependencies are not installed")
@async_test
async def test_blackd_fast(self) -> None:
app = blackd.make_app()
async with TestClient(TestServer(app)) as client:
response = await client.post("/", data=b"ur'hello'")
self.assertEqual(response.status, 500)
self.assertIn("failed to parse source file", await response.text())
response = await client.post(
"/", data=b"ur'hello'", headers={blackd.FAST_OR_SAFE_HEADER: "fast"}
)
self.assertEqual(response.status, 200)
with open(os.devnull, "w") as dn, redirect_stderr(dn):
app = blackd.make_app()
async with TestClient(TestServer(app)) as client:
response = await client.post("/", data=b"ur'hello'")
self.assertEqual(response.status, 500)
self.assertIn("failed to parse source file", await response.text())
response = await client.post(
"/", data=b"ur'hello'", headers={blackd.FAST_OR_SAFE_HEADER: "fast"}
)
self.assertEqual(response.status, 200)

@unittest.skipUnless(has_blackd_deps, "blackd's dependencies are not installed")
@async_test
Expand Down

0 comments on commit 4809e36

Please sign in to comment.