-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(tox): fix collecting code coverage information (#134)
Fixes `tox` configuration with respect to collecting code coverage information. Allows higher version of the `coverage` package for Python 3.12 tests.
- Loading branch information
1 parent
7dd1b14
commit 023adcf
Showing
2 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,22 @@ | ||
# This file is part of REANA. | ||
# Copyright (C) 2022, 2023 CERN. | ||
# Copyright (C) 2022, 2023, 2024 CERN. | ||
# | ||
# REANA is free software; you can redistribute it and/or modify it | ||
# under the terms of the MIT License; see LICENSE file for more details. | ||
|
||
[tox] | ||
envlist = py38, py39, py310, py311, py312 | ||
envlist = | ||
py38 | ||
py39 | ||
py310 | ||
py311 | ||
py312 | ||
|
||
[testenv] | ||
deps = pytest | ||
pytest-cov | ||
commands = pytest {posargs} | ||
deps = | ||
pytest | ||
pytest-cov | ||
commands = | ||
pytest {posargs} | ||
package = | ||
editable |