From 422dda8de4a05e0d5bbc32f657391407cb0b74f2 Mon Sep 17 00:00:00 2001 From: rcholic Date: Sun, 21 Dec 2025 18:59:07 -0800 Subject: [PATCH] fix release sync --- .github/workflows/sync-extension.yml | 5 +++++ .gitignore | 3 +++ pyproject.toml | 7 +++++++ 3 files changed, 15 insertions(+) diff --git a/.github/workflows/sync-extension.yml b/.github/workflows/sync-extension.yml index 569f0ca..c53f01f 100644 --- a/.github/workflows/sync-extension.yml +++ b/.github/workflows/sync-extension.yml @@ -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 diff --git a/.gitignore b/.gitignore index 9132b01..6e5d5d0 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,6 @@ Thumbs.db # Playwright .playwright/ + +# Temporary directories from sync workflows +extension-temp/ diff --git a/pyproject.toml b/pyproject.toml index c89fa87..f1d8b8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"