From b9a5afca59770589f2135f81c4374fd2b38caa5d Mon Sep 17 00:00:00 2001 From: sethreec <112038379+sethreec@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:32:06 -0700 Subject: [PATCH 1/4] Update deploy.yml changed pytest options to show coverage --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 72935ca..0f32243 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,7 @@ jobs: pip install pytest - name: Run Tests - run: pytest + run: pytest --cov=src/weather_planner --cov-report=term-missing #2) Build and Push to Docker Hub build: From 25962e35985aaf4cb76d5b040eb494860d81cfcd Mon Sep 17 00:00:00 2001 From: sethreec <112038379+sethreec@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:34:53 -0700 Subject: [PATCH 2/4] Update deploy.yml trying other version of pytest to get all the tests? --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0f32243..6d42906 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,7 @@ jobs: pip install pytest - name: Run Tests - run: pytest --cov=src/weather_planner --cov-report=term-missing + run: pytest --cov-report=term-missing #2) Build and Push to Docker Hub build: From d122ee8e36907e5702a7d8741ade477a2379b49f Mon Sep 17 00:00:00 2001 From: sethreec <112038379+sethreec@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:37:00 -0700 Subject: [PATCH 3/4] Update deploy.yml try again --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6d42906..481f853 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,7 @@ jobs: pip install pytest - name: Run Tests - run: pytest --cov-report=term-missing + run: pytest --cov --cov-report=term-missing #2) Build and Push to Docker Hub build: From a6566d82f125d2300f047169452584713296ff08 Mon Sep 17 00:00:00 2001 From: sethreec <112038379+sethreec@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:38:14 -0700 Subject: [PATCH 4/4] Update deploy.yml changed back to original. it was right --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 481f853..0f32243 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,7 @@ jobs: pip install pytest - name: Run Tests - run: pytest --cov --cov-report=term-missing + run: pytest --cov=src/weather_planner --cov-report=term-missing #2) Build and Push to Docker Hub build: