Skip to content

Modify the command dds motd send to allow the option to send only to unit personnel #847

Modify the command dds motd send to allow the option to send only to unit personnel

Modify the command dds motd send to allow the option to send only to unit personnel #847

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see:
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
---
name: Pytest
on:
push:
branches: [dev, master]
pull_request:
branches: [dev, master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dds_cli
run: |
pip install .
- name: Test with pytest
run: |
pip install -r tests/requirements-test.txt
COVERAGE_FILE=./coverage/.coverage
pytest --color=yes --cov=./dds_cli --cov-report=xml:coverage/report.xml
- uses: codecov/codecov-action@v2
with:
files: ./coverage/report.xml