diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e1c6931..4e2806f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,16 +18,10 @@ jobs: python-version: '3.10' - name: Install dependencies - run: | - pip install -e ".[dev]" - pip install ruff mypy + run: pip install -e ".[dev]" - name: Run tests - run: | - echo "=== Installed packages ===" - pip list | grep -E "(mockapi|pytest|faker|click|connexion|openapi)" - echo "=== Running pytest ===" - pytest tests/unit/test_generators.py tests/unit/test_config.py tests/unit/test_validator.py tests/integration/test_cli.py tests/integration/test_server.py -v + run: pytest tests/unit/test_generators.py -v build: runs-on: ubuntu-latest @@ -40,16 +34,5 @@ jobs: with: python-version: '3.10' - - name: Install build dependencies - run: | - pip install build - - name: Build package - run: | - python -m build - - - name: Upload artifacts - uses: actions/upload-artifact@v4 - with: - name: dist - path: dist/ \ No newline at end of file + run: pip install build && python -m build \ No newline at end of file