Skip to content

Python Testgen

Python Testgen #105

Workflow file for this run

name: Python Testgen
permissions:
contents: read
on:
pull_request:
push:
merge_group:
schedule:
- cron: '0 18 * * *'
env:
PYTHON_VERSION: "3.11"
jobs:
linting:
runs-on: ubuntu-latest
name: Lint
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip' # caching pip dependencies
- name: Install Python requirements.
run: pip install -r requirements.txt
- name: flake8 Lint
uses: py-actions/flake8@v2
- name: mypy Typecheck
run: mypy ./tests
- name: Black Format
uses: psf/black@stable
with:
src: "./tests"
testgen:
runs-on: ubuntu-latest
name: Generate Tests
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip' # caching pip dependencies
- name: Install Python requirements.
run: pip install -r requirements.txt
- name: Generate test files
working-directory: ./tests
# Generate but don't run the test suite - we already do that in the
# other CI tasks that run `cargo test`.
run: python3 generate.py --no-test
- name: Enforce no diff
run: git diff --exit-code