Skip to content

Commit

Permalink
feat(everything)!: rewrite, I guess (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
provinzkraut authored Jan 30, 2025
1 parent 239ed70 commit 5c26979
Show file tree
Hide file tree
Showing 94 changed files with 5,687 additions and 4,658 deletions.
112 changes: 37 additions & 75 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,55 +15,41 @@ env:
FORCE_COLOR: "1"

jobs:
run:
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
test:
name: Python ${{ matrix.python-version }} - ${{ matrix.cdist-group }}/3
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
# os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
cdist-group: [1, 2, 3]

steps:
- uses: actions/checkout@v4

- if: runner.os == 'Linux'
name: Install Microsoft ODBC Drivers & Free additional space
run: |
sudo ACCEPT_EULA=Y apt-get install msodbcsql18 -y || true
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
sudo rm -rf \
/usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/local/.ghcup \
/usr/lib/jvm || true
sudo apt-get autoremove -y \
&& sudo apt-get clean -y \
&& sudo rm -rf /root/.cache \
&& sudo rm -rf /var/apt/lists/* \
&& sudo rm -rf /var/cache/apt/* \
&& sudo apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false
name: Install Microsoft ODBC Drivers
run: sudo ACCEPT_EULA=Y apt-get install -y msodbcsql18 libmariadb-dev

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install Hatch
run: pip install --upgrade hatch hatch-pip-compile
- name: Install uv
uses: astral-sh/setup-uv@v5

- if: matrix.python-version == '3.12' && runner.os == 'Linux'
name: Lint
run: hatch run lint:check
- name: Intall dependencies
run: uv sync --frozen

- if: matrix.python-version == '3.12' && runner.os == 'Linux'
name: Run tests with coverage tracking
run: hatch run +py=${{ matrix.python-version }} test:cov
run: uv run pytest --cdist-group=${{ matrix.cdist-group }}/3 -k "not elasticsearch"

- if: matrix.python-version != '3.12' || runner.os != 'Linux'
name: Run tests without tracking coverage
run: hatch run +py=${{ matrix.python-version }} test:no-cov
run: uv run pytest --cdist-group=${{ matrix.cdist-group }}/3 -k "not elasticsearch"

- if: matrix.python-version == '3.12' && runner.os == 'Linux'
uses: actions/upload-artifact@v4
Expand All @@ -77,9 +63,31 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: litestar-org/pytest-databases

# run elasticsearch in a separate step. it's too slow
test_elasticsearch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9

- name: Install uv
uses: astral-sh/setup-uv@v5

- name: Intall dependencies
run: uv sync --frozen

- name: Run tests with coverage tracking
run: uv run pytest -k elasticsearch

sonar:
needs:
- run
- test
- test_elasticsearch
if: github.event.pull_request.head.repo.fork == false && github.repository_owner == 'litestar-org'
runs-on: ubuntu-latest
steps:
Expand All @@ -100,49 +108,3 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
codeql:
needs:
- run
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Initialize CodeQL Without Dependencies
uses: github/codeql-action/init@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

build-docs:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install Hatch
run: pip install --upgrade hatch hatch-containers hatch-pip-compile

- name: Build docs
run: hatch run docs:build

- name: Save PR number
env:
PR_NUMBER: ${{ github.event.number }}
run: echo $PR_NUMBER > .pr_number

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: docs-preview
path: |
docs/_build/html
.pr_number
72 changes: 0 additions & 72 deletions .github/workflows/docs-preview.yaml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/docs.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions docs/Makefile

This file was deleted.

Empty file removed docs/__init__.py
Empty file.
35 changes: 0 additions & 35 deletions docs/_static/style.css

This file was deleted.

Loading

0 comments on commit 5c26979

Please sign in to comment.