File tree 2 files changed +1
-17
lines changed
2 files changed +1
-17
lines changed Original file line number Diff line number Diff line change 60
60
- run : poe fix-wheel
61
61
62
62
# Simple test
63
- - run : poe test-dist-single
63
+ - run : uv run pytest -k test_activity_hello
64
64
65
65
# Upload dist
66
66
- uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -89,22 +89,6 @@ lint-types = "uv run mypy --namespace-packages --check-untyped-defs ."
89
89
run-bench = " uv run python scripts/run_bench.py"
90
90
test = " uv run pytest"
91
91
92
- # Install local, run single pytest with env var, uninstall local
93
- [tool .poe .tasks .test-dist-single ]
94
- ignore_fail = " return_non_zero"
95
- # Has to be a child table due to the Python TOML decoder in many default pips
96
- # failing on inline table with "Invalid inline table value encountered" because
97
- # there's a comma (see https://github.com/uiri/toml/issues/348).
98
-
99
- [[tool .poe .tasks .test-dist-single .sequence ]]
100
- cmd = " uv pip install --no-index --find-links=./dist temporalio"
101
-
102
- [[tool .poe .tasks .test-dist-single .sequence ]]
103
- cmd = " uv run pytest -k test_activity_hello"
104
- env = { TEMPORAL_INTEGRATION_TEST = " 1" }
105
-
106
- [[tool .poe .tasks .test-dist-single .sequence ]]
107
- cmd = " uv pip uninstall temporalio -y"
108
92
109
93
[tool .pytest .ini_options ]
110
94
asyncio_mode = " auto"
You can’t perform that action at this time.
0 commit comments