Python Build #170
Workflow file for this run
This file contains hidden or 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
| # Performs unit and integration testing | |
| name: Validations Python CI | |
| # The events that trigger the workflow | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/mach3-software/mach3:alma9v1.3.0 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install pyMaCh3 | |
| run: | | |
| cd /opt/ | |
| mkdir /python-test-modules | |
| git clone --branch "develop" https://github.com/mach3-software/MaCh3.git MaCh3Core | |
| pip install MaCh3Core/ -t /python-test-modules/ | |
| - name: Get MaCh3 Validations | |
| run: | | |
| cd /opt/ | |
| git clone --branch "${{ github.head_ref }}" https://github.com/mach3-software/MaCh3Tutorial.git MaCh3Validations | |
| - name: Install pytest | |
| working-directory: /opt/MaCh3Validations | |
| run: | | |
| pip install -r ./CIValidations/PythonTests/requirements.txt -t /python-test-modules/ | |
| - name: Validations | |
| working-directory: /opt/MaCh3Validations | |
| run: | | |
| source /opt/root/v6-26-10/bin/thisroot.sh | |
| export PYTHONPATH=$PYTHONPATH:/python-test-modules/ | |
| export MACH3=$PWD | |
| python3 -m pytest --config TutorialConfigs/FitterConfig.yaml CIValidations/PythonTests | |