From da0c927c267d5b3d83cb6c12425804ed400a1f0f Mon Sep 17 00:00:00 2001 From: Matt Johnson Date: Sat, 3 Aug 2024 17:03:08 -0700 Subject: [PATCH] test notebook in CI workflow --- .github/workflows/CI.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index bcc2126..2cb5c45 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -39,10 +39,14 @@ jobs: miniforge-version: "latest" python-version: ${{ matrix.python-version }} use-mamba: true + - name: add pytest + run: | + mamba install pytest - name: Conda Info run: | mamba info mamba list - name: Run test run: | - nosetests pyrms/rmsTest.py \ No newline at end of file + nosetests pyrms/rmsTest.py + pytest --nbmake Ipython/pyrms_example.ipynb \ No newline at end of file