Add the BATS executor #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pytest | |
on: | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
name: Check out repository | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Prepare ssh | |
run: | | |
ssh-keygen -t ed25519 -f ~/.ssh/id_rsa -N '' | |
cat > ~/.ssh/config <<EOF | |
Host localhost | |
User runner | |
HostName 127.0.0.1 | |
EOF | |
cat - ~/.ssh/id_rsa.pub > ~/.ssh/authorized_keys | |
# - name: Test ssh connect | |
# run: | | |
# cat - ~/.ssh/whatever.pub > ~/.ssh/authorized_keys | |
- name: Prepare python env | |
run: | | |
python -m venv env | |
env/bin/python -m pip install -U pip | |
env/bin/python -m pip install -r requirements/celery.txt | |
- name: Run unit tests (pytest) | |
env: | |
CELERY_CONFIG_PATH: tests/tests_config.yaml | |
SSH_USERNAME: runner | |
SSH_PRIVATE_KEY: ~/.ssh/id_rsa | |
IGNORE_ENCRYPTED_KEYS: True | |
run: env/bin/python -m pytest -v --cov-report term-missing:skip-covered | |
--cov-report xml:/tmp/coverage.xml --junitxml=/tmp/pytest.xml --cov=alts tests/ | tee /tmp/pytest-coverage.txt | |
- name: Pytest coverage comment | |
uses: MishaKav/pytest-coverage-comment@main | |
with: | |
pytest-coverage-path: /tmp/pytest-coverage.txt | |
pytest-xml-coverage-path: /tmp/coverage.xml | |
title: Coverage report for changed files | |
badge-title: Total coverage | |
hide-badge: false | |
hide-report: false | |
report-only-changed-files: true | |
hide-comment: false | |
remove-link-from-badge: false | |
junitxml-path: /tmp/pytest.xml |