From 47362d5d659a3dbed2fa46354868e8d3f62df3c3 Mon Sep 17 00:00:00 2001 From: Terry Zhuo Date: Mon, 15 Apr 2024 03:51:38 +0800 Subject: [PATCH] Update python-app.yml --- .github/workflows/python-app.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 72508e67..9a73298e 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -33,8 +33,12 @@ jobs: run: | # stop the build if there are Python syntax errors or undefined names flake8 data/clean/*.py --count --select=E9,F63,F7,F82 --show-source --statistics - - name: Test with pytest + - name: Test with pytest (f_855) run: | - # pytest --doctest-modules data/clean/*_w_doc.py - # pytest data/clean/*_wo_doc.py pytest data/clean/f_855*.py + - name: Test processed data with pytest and doctest (jenny) + run: | + pytest --doctest-modules data/processed/*jenny_w_doc.py + - name: Test processed data with pytest and no doctest + run: | + pytest data/processed/*_wo_doc.py