Skip to content

Project metadata to pyproject.toml + remove i18n #244

Project metadata to pyproject.toml + remove i18n

Project metadata to pyproject.toml + remove i18n #244

Workflow file for this run

name: pytest
on:
push:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- 'weldx_widgets/**'
- '.github/workflows/pytest.yml'
jobs:
pytest:
name: pytest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
py: ['3.9', '3.10', '3.11']
weldx_version: ['weldx']
include:
- os: ubuntu-latest
py: '3.10'
weldx_version: 'git+https://github.com/BAMWelDX/weldx.git'
env:
WELDX_VERSION: ${{ matrix.weldx_version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for all tags and branches
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('setup.cfg') }}
restore-keys: |
${{ runner.os }}-pip-
- name: pip installs
run: |
pip install wheel
pip install $WELDX_VERSION
pip install -e .[test]
- name: run pytest
run: |
pytest --no-cov-on-fail
- name: coverage xml (combination is performed by pytest-cov)
run: coverage xml
- name: codecov.io
uses: codecov/[email protected]