問題タブ [pytest-asyncio]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - pytest フィクスチャから asyncio サーバーを実行する
pytest フィクスチャで asyncio を使用してサーバーを実行しようとしています
start
方法は以下のようなものです
サーバーとの接続を開こうとすると、テストはこのエラーを出力しますが、
編集:問題は、イベントループが直後に閉じられることです。そのため、すべてのフィクスチャをマークしようとしまし(scope="module")
たが、今では
EDIT2:
だから私はevent_loop
フィクスチャを追加しました
を使用して、各フィクスチャのデフォルト ループをオーバーライドする必要があります@pytest.mark.asyncio
。
テスト内でデバッグすることにより、event_loop
は内部に保存しているループと同じですServerEndpoint
(つまりasyncio.get_running_loop()
) ですが、まだ取得していますConnectionRefusedError