-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
installation: deprecate
tests_require
Amends installation setup with respect to deprecated `tests_require`. Amends `tox` testing setup to produce correct coverage findings.
- Loading branch information
1 parent
ea24900
commit 18e2095
Showing
3 changed files
with
34 additions
and
24 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
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,15 +1,27 @@ | ||
# This file is part of cernopendata-client. | ||
# | ||
# Copyright (C) 2020, 2022, 2023 CERN. | ||
# Copyright (C) 2020, 2022, 2023, 2024 CERN. | ||
# | ||
# cernopendata-client is free software; you can redistribute it and/or modify | ||
# it under the terms of the GPLv3 license; see LICENSE file for more details. | ||
|
||
[tox] | ||
envlist = py36, py37, py38, py39, py310, py311, py312 | ||
envlist = | ||
py36 | ||
py37 | ||
py38 | ||
py39 | ||
py310 | ||
py311 | ||
py312 | ||
|
||
[testenv] | ||
deps = pytest | ||
pytest-cov | ||
setuptools | ||
commands = {envpython} setup.py test | ||
deps = | ||
pytest | ||
pytest-cov | ||
pytest-mock | ||
setuptools | ||
commands = | ||
pytest {posargs} | ||
package = | ||
editable |