From 87fd9ef6c8cf56ab5c4ae7e085d96506330cc1bc Mon Sep 17 00:00:00 2001 From: Evan Harvey Date: Tue, 2 Apr 2024 16:56:02 -0600 Subject: [PATCH] Add pip upgrade nightly --- .github/workflows/ubi8-nightly.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ubi8-nightly.yml b/.github/workflows/ubi8-nightly.yml index 2cdfb673b..8b77f7a13 100644 --- a/.github/workflows/ubi8-nightly.yml +++ b/.github/workflows/ubi8-nightly.yml @@ -37,4 +37,11 @@ jobs: run: | python3 -m pip install -r ../requirements.txt export PYTHONPATH=$PWD/../ + pytest --color=yes -rs -vv --cov=. --cov-report term --cov-config=.coveragerc + + - name: Pip Upgrade pytest-cov + working-directory: OpenCSP/example + run: | + python3 -m pip install -U -r ../requirements.txt + export PYTHONPATH=$PWD/../ pytest --color=yes -rs -vv --cov=. --cov-report term --cov-config=.coveragerc \ No newline at end of file