use pytest for github actions #11
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 cone.zodb | |
on: | |
push: | |
jobs: | |
test: | |
name: Test ${{ matrix.python }} - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
python: | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install | |
run: | | |
pip install wheel | |
pip install coverage | |
pip install six | |
pip install pyramid==1.9.4 repoze.zcml==1.0b1 repoze.workflow==1.0b1 | |
pip install https://github.com/conestack/node/archive/master.zip | |
pip install https://github.com/conestack/yafowil.webob/archive/master.zip | |
pip install -e .[test] | |
- name: Run tests | |
run: | | |
python --version | |
python -m src/cone/zodb/tests | |
- name: Run coverage | |
run: | | |
coverage run --source=src/cone/zodb -m src/cone/zodb/tests | |
coverage report --fail-under=100 |