blob: 9d1601dc0d616494f1ff3a8753c6c3c0a06564be [file] [log] [blame]
name: Unit Tests
on: [push,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]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@master
with:
repository: apache/incubator-ponymail-unit-tests
path: pmtests
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install html2text # optional dependency, but needed for tests
# - name: Test with pytest
# run: |
# pip install pytest
# pytest
- name: Test with Ponymail Unit tests
run: |
sed -e '/incubator/s/# cropout:/cropout:/' tools/ponymail.yaml.example >tools/ponymail.yaml
cd pmtests
python runall.py --root ..