Skip to content

Added None as a line option #1128

Added None as a line option

Added None as a line option #1128

Workflow file for this run

name: MSlice unit tests
on: push
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout MSlice
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
miniforge-variant: Mambaforge
activate-environment: mslice-env
environment-file: environment.yml
auto-activate-base: false
- name: Install Mantid
run: |
conda install -c mantid/label/nightly mantid mantidqt
- name: Run Tests and Coverage
run: |
xvfb-run '--server-args=-screen 0 640x480x24' --auto-servernum coverage run -m pytest
- name: Report Coverage
run: |
coverage report