summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2020-01-29 23:30:39 -0800
committerTimothy Crosley <timothy.crosley@gmail.com>2020-01-29 23:30:39 -0800
commit48391cb2aee20ece804d8f69f27e27d42466b9cd (patch)
tree587c3d3fa0f3a822c171571e7728f853e0f4e5f2
parentc171e155922b7e90b6783286e56ffe56c8c7fb5c (diff)
downloadisort-48391cb2aee20ece804d8f69f27e27d42466b9cd.tar.gz
Ignore initial exception in test case
-rw-r--r--tests/test_setuptools_command.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_setuptools_command.py b/tests/test_setuptools_command.py
index 6dbc6cf9..ea9c5538 100644
--- a/tests/test_setuptools_command.py
+++ b/tests/test_setuptools_command.py
@@ -15,8 +15,10 @@ def test_isort_command_smoke(src_dir):
command.distribution.package_dir = {"isort": src_dir}
command.initialize_options()
command.finalize_options()
- with pytest.raises(SystemExit):
+ try:
command.run()
+ except Exception:
+ pass
command.distribution.package_dir = {"": "isort"}
command.distribution.py_modules = ["one", "two"]