Skip to content

Commit

Permalink
Remove test on Windows and Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolargo committed Dec 29, 2024
1 parent c372d35 commit 3b67eb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ jobs:
runs-on: windows-2022
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
# Windows-curses not available for Python 3.13 for the moment
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:

- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def glances_stats():
stats.end()


@pytest.fixture(scope="session")
@pytest.fixture(scope="module")
def glances_stats_no_history():
core = GlancesMain(args_begin_at=2)
args = core.get_args()
Expand Down

0 comments on commit 3b67eb1

Please sign in to comment.