blob: 077a395b404cfbaae0468445f56f56b422f14975 [file] [log] [blame]
name: Unit Tests
on:
push:
paths-ignore:
- '**/integration-tests.yml'
- 'test/itest*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
# python-version: [2.7, 3.5, 3.6, 3.7]
python-version: [3.7, "3.10"]
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0 # need all versions to be able to access server tree commit logs
persist-credentials: false
- uses: actions/checkout@master
with:
persist-credentials: false
repository: apache/incubator-ponymail-unit-tests
path: pmtests
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tools/requirements.txt
pip install -r test/requirements.txt
pip install html2text # optional dependency, but needed for tests
- name: Check versions
run: |
webui/js/source/build.sh
server/update_version.sh
- name: Test with pytest
run: |
cp tools/archiver.yaml.example tools/archiver.yaml
python -m pytest test/test_*.py
- name: Test with Ponymail Unit tests
run: |
sed -e '/incubator/s/# cropout:/cropout:/' tools/archiver.yaml.example >tools/archiver.yaml
cd pmtests
python runall.py --root ..