Files
schema2mock/.gitea/workflows/ci.yml
7000pctAUTO 14eed9ec87
Some checks failed
CI / test (push) Failing after 14s
CI: debug test discovery
2026-03-22 22:59:49 +00:00

31 lines
664 B
YAML

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install pytest
- name: List test files
run: |
find tests -name "*.py" -type f | head -20
- name: Run tests
run: python -m pytest tests/ -v --ignore=tests_testdatagen