Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/sync-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,11 @@ jobs:
fi
echo "✅ All required WASM files verified"

# Clean up temporary directory
cd ..
rm -rf extension-temp
echo "🧹 Cleaned up extension-temp directory"

- name: Check for changes
if: steps.release.outputs.skip != 'true'
id: changes
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,6 @@ Thumbs.db

# Playwright
.playwright/

# Temporary directories from sync workflows
extension-temp/
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,10 @@ dev = [
[tool.setuptools.packages.find]
where = ["."]
include = ["sentience*"]

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
Loading