From 7f8682ed6037ce80c630234324fead3a4b994a94 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 24 Nov 2023 18:28:33 +0100 Subject: [PATCH 1/2] testing CI --- scripts/multi_thermostat_driver.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/multi_thermostat_driver.py b/scripts/multi_thermostat_driver.py index 6904b4ab..6c012a19 100644 --- a/scripts/multi_thermostat_driver.py +++ b/scripts/multi_thermostat_driver.py @@ -14,6 +14,8 @@ # These are variables used in the example code. Please tailor these to your # environment as needed. +# This comment here is just a change to test github's CI. + # Whether to compute Advanced Statistics (in most cases this is NOT needed) ADVANCED_STATS = False From 3f3642310b2760369c0a1a00618e3b9ea9cf5a6b Mon Sep 17 00:00:00 2001 From: John Date: Mon, 11 Dec 2023 20:56:14 +0100 Subject: [PATCH 2/2] updated testing enviorment --- .github/workflows/python-app.yaml | 4 ++-- .github/workflows/windows_conda_testing.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-app.yaml b/.github/workflows/python-app.yaml index 15a3492e..5e360a9b 100644 --- a/.github/workflows/python-app.yaml +++ b/.github/workflows/python-app.yaml @@ -9,7 +9,7 @@ jobs: strategy: matrix: # Apparently 3.10 gets converted to 3.1 if it's not a string. Brilliant. - python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] + python-version: [3.8, 3.9, '3.10', '3.11'] steps: - uses: actions/checkout@v3 @@ -22,7 +22,7 @@ jobs: python -m pip install --upgrade pip pip install wheel flake8 pip install -r dev-requirements.txt - pip install -e . + pip install -r requirements.txt - name: Prime Cache run: | mkdir $HOME/.eeweather diff --git a/.github/workflows/windows_conda_testing.yaml b/.github/workflows/windows_conda_testing.yaml index c289b9a0..b7a57ac4 100644 --- a/.github/workflows/windows_conda_testing.yaml +++ b/.github/workflows/windows_conda_testing.yaml @@ -32,6 +32,6 @@ jobs: C:\Miniconda\condabin\conda.bat activate base C:\Miniconda\condabin\conda.bat install pytest pytest-cov coverage mock pip C:\Miniconda\condabin\conda.bat install -c conda-forge shapely - pip install -e . + pip install -r requirements.txt pytest