summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2023-10-07 09:00:36 +0200
committernicolargo <nicolas@nicolargo.com>2023-10-07 09:00:36 +0200
commit2b641f4b5e319e10a52ff9de894a161113fa2c15 (patch)
tree6d232975a862544855c2bf8e1f81baf920bf7b13
parent62fd5aaee8b7d1d6014bc536affa3a54e015dfdf (diff)
Remove Python 3.12 because test not working on Windows
-rw-r--r--.github/workflows/test.yml5
-rw-r--r--conf/glances.conf2
2 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 44d2b629..e7fa9c44 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -64,8 +64,9 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
- python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
-
+ # Python version "3.12" introduce this issue:
+ # https://github.com/nicolargo/glances/actions/runs/6439648370/job/17487567454
+ python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
diff --git a/conf/glances.conf b/conf/glances.conf
index 0fdf4651..19fbbee6 100644
--- a/conf/glances.conf
+++ b/conf/glances.conf
@@ -466,7 +466,7 @@ path=/tmp
# It is possible to generate the graphs automatically by setting the
# generate_every to a non zero value corresponding to the seconds between
# two generation. Set it to 0 to disable graph auto generation.
-generate_every=60
+generate_every=0
# See following configuration keys definitions in the Pygal lib documentation
# http://pygal.org/en/stable/documentation/index.html
width=800