Skip to content

add a test

add a test #515

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
test_type:
- tests
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: mamba-org/setup-micromamba@v1.4.3
with:
python-version: ${{ matrix.python-version }}
environment-file: environment-dev.yml
create-args: >-
python=${{ matrix.python-version }}
numpy
-c conda-forge
- name: Install JHub Apps
run: |
pip install .
- name: Run Tests
run: |
pytest jhub_apps/${{ matrix.test_type }} -vvv -s