We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 829845e commit 4b14fb3Copy full SHA for 4b14fb3
pyproject.toml
@@ -93,8 +93,12 @@ lint-types = "mypy --namespace-packages --check-untyped-defs ."
93
run-bench = "python scripts/run_bench.py"
94
test = "pytest"
95
96
+# Install local, run single pytest with env var, uninstall local
97
[tool.poe.tasks.test-dist-single]
98
ignore_fail = "return_non_zero"
99
+# Has to be a child table due to the Python TOML decoder in many default pips
100
+# failing on inline table with "Invalid inline table value encountered" because
101
+# there's a comma (see https://github.com/uiri/toml/issues/348).
102
103
[[tool.poe.tasks.test-dist-single.sequence]]
104
cmd = "pip install --no-index --find-links=./dist temporalio"
0 commit comments