From 1c713cedea46054bc0394ba0e94b4b82ac2ae381 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 11:37:55 +0000 Subject: [PATCH] Debug CI - install dependencies first, then package, and test import --- .gitea/workflows/ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 16955bd..86df831 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -20,15 +20,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -e . pip install pytest pytest-asyncio - - - name: Debug - list files - run: | - ls -la - ls -la snip/ - ls -la tests/ + pip install -r requirements.txt + pip install -e . - name: Run tests run: | + python -c "import snip; print('Import successful:', snip)" pytest tests/ -v --tb=short \ No newline at end of file