67 lines
1.8 KiB
YAML
67 lines
1.8 KiB
YAML
name: pytest
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, dev ]
|
|
pull_request:
|
|
branches: [ main, dev ]
|
|
|
|
jobs:
|
|
pyTestCov:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Python Setup
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.8
|
|
architecture: x64
|
|
- name: Install Packages
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install xvfb libenchant-dev qt5-default
|
|
- name: Checkout Source
|
|
uses: actions/checkout@v2
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
pip install PyVirtualDisplay
|
|
pip install pytest-timeout
|
|
pip install pytest-cov
|
|
pip install pytest-xvfb
|
|
pip install pytest-qt
|
|
pip install codecov
|
|
- name: Run Tests
|
|
run: xvfb-run pytest -v --cov=nw --timeout=90
|
|
- name: Upload to Codecov
|
|
uses: codecov/codecov-action@v1
|
|
|
|
pyTest:
|
|
needs: pyTestCov
|
|
strategy:
|
|
matrix:
|
|
python-version: [3.6, 3.7]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Python Setup
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
architecture: x64
|
|
- name: Install Packages
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install xvfb libenchant-dev qt5-default
|
|
- name: Checkout Source
|
|
uses: actions/checkout@v2
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
pip install PyVirtualDisplay
|
|
pip install pytest-timeout
|
|
pip install pytest-xvfb
|
|
pip install pytest-qt
|
|
- name: Run Tests
|
|
run: xvfb-run pytest -v --timeout=90
|