Skip to content

Update RoveComm submodule to the latest commit #72

Update RoveComm submodule to the latest commit

Update RoveComm submodule to the latest commit #72

Workflow file for this run

name: RC Unit Tests
on:
push:
branches:
- dev
- master
pull_request:
branches:
- dev
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install pytest-cov
- name: Unit and coverage test with pytest
run: |
pytest -v --cov=../RoveComm_Python