2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Pythonのunittestで「Exception has occurred: SystemExit」が出る

Last updated at Posted at 2021-01-24

Pythonのunittestで「Exception has occurred: SystemExit」が出たときの対応。

エラーが出る理由

文法等に誤りがあるわけではなく、例えば、デバッグモードで起動するなど、実行環境に問題があると、このエラーが出ます。unittestではデバッグモードで起動されることを想定していないようです。
デバッグなしで起動すると、このエラーは出てきません。

どうしてもデバッグモードでも使いたい方は以下の方法でエラーを消すことができます。

デバッグモードでもエラーをなくす方法

if __name__ == "__main__":
    unittest.main()

これを

if __name__ == "__main__":
    unittest.main(exit=False)

に書き換えるとエラーが出なくなります。

##参考URL
https://stackoverflow.com/questions/9202772/tests-succeed-still-get-traceback

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?