pub async fn main() -> PyResult<()>Expand description
Parses test arguments and passes the tests to the pyo3-async-runtimes test harness
This function collects the test structures from the inventory boilerplate and forwards them to
the test harness.
ยงExamples
use pyo3::prelude::*;
#[pyo3_async_runtimes::async_std::main]
async fn main() -> PyResult<()> {
pyo3_async_runtimes::testing::main().await
}