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