Skip to content

remove namespace pkg #178

remove namespace pkg

remove namespace pkg #178

Workflow file for this run

name: EVSVesuvio pull request workflow
on: push
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
# Set up conda environnment
- name: Setup Miniconda
uses: conda-incubator/[email protected]
with:
miniforge-version: latest
miniforge-variant: Mambaforge
activate-environment: vesuvio-env
environment-file: environment.yml
python-version: 3.8
auto-activate-base: false
- name: Flake8
run: python -m flake8 --config=config.flake8
# Runs Unit tests
#- name: Run EVSVesuvio Analysis Unit Tests
# run: coverage run -m unittest discover -s ./EVSvesuvio/vesuvio_analysis
# Runs System tests
#- name: Run EVSVesuvio Analysis System Tests
# run: python -m unittest discover -s ./EVSVesuvio/system_tests
- name: Run EVSVesuvio Calibration Unit Tests
run: |
export MANTIDPROPERTIES=$(pwd)/Mantid.user.properties
cd unpackaged/vesuvio_calibration
python -m unittest discover -s ./tests/unit
#DISABLED AS THEY APPEAR TOO LARGE FOR GITHUB HOSTED RUNNERS
#- name: Run Vesuvio Calibration System Tests
# run: python -m unittest discover -s ./unpackaged/vesuvio_calibration/tests/system
# Report coverage
#- name: Report Coverage
# run: coverage report