mirror of
https://github.com/rbreu/beeref.git
synced 2026-03-11 08:54:28 +00:00
29 lines
891 B
YAML
29 lines
891 B
YAML
name: pytest
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ['3.6', '3.7', '3.8', '3.9']
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt install libgl1-mesa-glx libegl1 libglib2.0-0 libxcb-image0 libxkbcommon-x11-0 libxcb-icccm4 libxcb-keysyms1-dev xserver-xephyr libfontconfig1 libxkbcommon-dev libdbus-1-3
|
|
sudo apt install xvfb
|
|
python -m pip install --upgrade pip
|
|
pip install .
|
|
pip install -r requirements/dev.txt
|
|
- name: Run Unittests with pytest
|
|
run: |
|
|
xvfb-run coverage run --source=beeref -m pytest -v -s
|
|
- name: Upload Coverage report to Codecov
|
|
uses: codecov/codecov-action@v1
|