samples-python icon indicating copy to clipboard operation
samples-python copied to clipboard

Samples for working with the Temporal Python SDK

Results 83 samples-python issues
Sort by recently updated
recently updated
newest added

## What was changed Properly skip infrequent polling test on time-skipping server ## Checklist 1. Closes #184

### Describe the bug #152 added `test_infrequent_polling_workflow`, but put ```python if not env.supports_time_skipping: pytest.skip("Too slow to test with time-skipping disabled") ``` when likely meant ```python if env.supports_time_skipping: pytest.skip("Too slow to...

bug

Hi, was just implementing a context propagation interceptor based on this sample: https://github.com/temporalio/samples-python/blob/main/context_propagation/README.md After a bit of experimentation, it seems like the the contextvar value is automatically restored to the...