質問編集履歴

2

2021/02/03 08:25

投稿

nobuhiro6
nobuhiro6

スコア5

test CHANGED
File without changes
test CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  確認対象処理例)
14
14
 
15
- if not _debug_":
15
+ if not _debug_:
16
16
 
17
17
    print('hoge')
18
18
 

1

debgu変数名が正常に表示されていない為、修正しました。

2021/02/03 08:25

投稿

nobuhiro6
nobuhiro6

スコア5

test CHANGED
File without changes
test CHANGED
@@ -12,13 +12,13 @@
12
12
 
13
13
  確認対象処理例)
14
14
 
15
- if not __debug__:
15
+ if not _debug_":
16
16
 
17
17
    print('hoge')
18
18
 
19
19
 
20
20
 
21
- ご質問は、「pytest実行時にpythonの__debug__変数をFalseとしてテストするにはどの様にすれば良いか?」となります。
21
+ ご質問は、「pytest実行時にpythonの_debug_変数をFalseとしてテストするにはどの様にすれば良いか?」となります。
22
22
 
23
23
 
24
24