Skip to content

Commit

Permalink
add test_quality_checks pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasGensollen committed May 22, 2024
1 parent a43472f commit 151bd05
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/test_quality_checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Quality Check Tests

on:
push:
branches: ["dev"]
pull_request:
branches: ["dev"]

permissions:
contents: read

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

env:
POETRY_VERSION: '1.8.3'
PYTHON_VERSION: '3.11'

jobs:
test-quality-check:
runs-on:
- self-hosted
- Linux
- ubuntu
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
virtualenvs-create: false
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Run tests for Quality Check
run: |
make env.conda
source /builds/miniconda3/etc/profile.d/conda.sh
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
--junitxml=./test-reports/test_quality_check_report.xml \
--disable-warnings \
--verbose \
--basetemp=$HOME/tmp/quality_checks \
--input_data_directory=/mnt/data/data_ci \
test_qc.py
- name: Cleaning
run: |
rm -rf $HOME/tmp/quality_checks/*

0 comments on commit 151bd05

Please sign in to comment.