File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " temporalio"
3
- version = " 0.1a1.dev3 "
3
+ version = " 0.1a1.dev4 "
4
4
description = " Temporal.io Python SDK"
5
5
license = " MIT"
6
6
authors = [" Temporal Technologies Inc <sdk@temporal.io>" ]
@@ -68,11 +68,16 @@ test = "pytest"
68
68
# Install local, run single pytest with env var, uninstall local
69
69
[tool .poe .tasks .test-dist-single ]
70
70
ignore_fail = " return_non_zero"
71
- sequence = [
72
- { cmd = " pip install --no-index --find-links=./dist temporalio" },
73
- { cmd = " pytest -k test_activity_hello" , env = { TEMPORAL_INTEGRATION_TEST = " 1" } },
74
- { cmd = " pip uninstall temporalio -y" },
75
- ]
71
+ # Has to be a child table due to the Python TOML decoder in many default pips
72
+ # failing on inline table with "Invalid inline table value encountered" because
73
+ # there's a comma (see https://github.com/uiri/toml/issues/348).
74
+ [[tool .poe .tasks .test-dist-single .sequence ]]
75
+ cmd = " pip install --no-index --find-links=./dist temporalio"
76
+ [[tool .poe .tasks .test-dist-single .sequence ]]
77
+ cmd = " pytest -k test_activity_hello"
78
+ env = { TEMPORAL_INTEGRATION_TEST = " 1" }
79
+ [[tool .poe .tasks .test-dist-single .sequence ]]
80
+ cmd = " pip uninstall temporalio -y"
76
81
77
82
[tool .pytest .ini_options ]
78
83
asyncio_mode = " auto"
You can’t perform that action at this time.
0 commit comments