From a49c29fa75c47063678f1acc0a81ea46735d54e4 Mon Sep 17 00:00:00 2001 From: rwood-moz Date: Thu, 23 Jan 2025 12:00:40 -0500 Subject: [PATCH] Post-review updates --- .github/workflows/validate.yml | 2 -- backend/README.md | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 1a8c397a..f40ed2c1 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -149,9 +149,7 @@ jobs: - name: Test with pytest working-directory: ./backend run: | - pwd current_dir=$(pwd) - echo $current_dir coverage run --data-file $current_dir/.coverage -m pytest --disable-warnings -s - name: Generate code coverage report diff --git a/backend/README.md b/backend/README.md index e53cc1e8..cd0a1bf3 100644 --- a/backend/README.md +++ b/backend/README.md @@ -70,7 +70,7 @@ To run the tests with the pytest warnings turned off: cd backend && python -m pytest --disable-warnings ``` -If you are debugging tests and have print staements inside them, run with this option so the output appears: +If you are debugging tests and have print statements inside them, run with this option so the output appears: ```bash cd backend && python -m pytest -s