Skip to content

Commit 422dda8

Browse files
committed
fix release sync
1 parent 8b0398e commit 422dda8

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.github/workflows/sync-extension.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,11 @@ jobs:
198198
fi
199199
echo "✅ All required WASM files verified"
200200
201+
# Clean up temporary directory
202+
cd ..
203+
rm -rf extension-temp
204+
echo "🧹 Cleaned up extension-temp directory"
205+
201206
- name: Check for changes
202207
if: steps.release.outputs.skip != 'true'
203208
id: changes

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,6 @@ Thumbs.db
5252

5353
# Playwright
5454
.playwright/
55+
56+
# Temporary directories from sync workflows
57+
extension-temp/

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,10 @@ dev = [
4646
[tool.setuptools.packages.find]
4747
where = ["."]
4848
include = ["sentience*"]
49+
50+
[tool.pytest.ini_options]
51+
testpaths = ["tests"]
52+
python_files = ["test_*.py"]
53+
python_classes = ["Test*"]
54+
python_functions = ["test_*"]
55+
asyncio_mode = "auto"

0 commit comments

Comments
 (0)