Skip to content

fix: update tests action to avoid hardcoding package name #6

fix: update tests action to avoid hardcoding package name

fix: update tests action to avoid hardcoding package name #6

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Run tests
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install .
pip install -r requirements-dev.txt
# Hacky way to get package name from setup.py
- name: Get package name
id: get_package_name
run: |
echo "::set-output name=package_name::$(python -c "import re; \
with open('setup.py', 'r') as f: \
data = f.read(); \
print(re.search(r"name\s*=\s*['\"]([^'\"]+)['\"]", data).group(1))")"
- name: Run tests
run: |
pytest -v --cov-fail-under=60 --cov=${{ steps.get_package_name.outputs.package_name }} -l --tb=short --maxfail=1 tests/
coverage xml
coverage html