use uv #1241
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test code | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
cache: "pip" | |
cache-dependency-path: pyproject.toml | |
- name: Test pre-commit hooks | |
run: | | |
python -m pip install --upgrade pip | |
pip install pre-commit | |
pre-commit run -a | |
test_code_pip: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 12 | |
matrix: | |
plugin: [femwell, gmsh, meow, sax, tidy3d, klayout, vlsir] | |
name: Test ${{ matrix.plugin }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cache/pip | |
key: ${{ hashFiles('pyproject.toml') }} | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
make uv venv test-data | |
uv pip install .[${{ matrix.plugin }},dev] | |
- name: Test with pytest | |
run: | | |
uv run pytest gplugins/${{ matrix.plugin }} | |
test_non_pip: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
max-parallel: 2 | |
matrix: | |
os: [ubuntu-latest] | |
plugin: [elmer] | |
name: Test ${{ matrix.plugin }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cache/pip | |
key: ${{ hashFiles('pyproject.toml') }} | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
make uv venv gmsh | |
make ${{ matrix.plugin }} | |
uv pip install -e .[dev,gmsh] --with setuptools | |
- name: Test with pytest | |
env: | |
GDSFACTORY_DISPLAY_TYPE: klayout | |
run: pytest gplugins/${{ matrix.plugin }} | |
test_code_coverage: | |
runs-on: ubuntu-latest | |
container: ghcr.io/gdsfactory/gdsfactory:main | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
pip install -e . | |
- name: Run tests | |
env: | |
SIMCLOUD_APIKEY: ${{ secrets.SIMCLOUD_APIKEY }} | |
GDSFACTORY_DISPLAY_TYPE: klayout | |
run: | | |
pytest --cov=gplugins | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: false |