|
10 | 10 | # add parent folder to python path so that we can import noxfile_utils.py |
11 | 11 | # note that you need to "pip install -r noxfile-requiterements.txt" for this file to work. |
12 | 12 | sys.path.append(str(Path(__file__).parent / "ci_tools")) |
13 | | -from nox_utils import PY27, PY37, PY36, PY35, PY38, PY39, PY310, power_session, rm_folder, rm_file, PowerSession, DONT_INSTALL # noqa |
| 13 | +from nox_utils import PY27, PY37, PY36, PY35, PY38, PY39, PY310, PY311, PY312, power_session, rm_folder, rm_file, PowerSession, DONT_INSTALL # noqa |
14 | 14 |
|
15 | 15 |
|
16 | 16 | pkg_name = "pytest_cases" |
|
19 | 19 |
|
20 | 20 |
|
21 | 21 | ENVS = { |
22 | | - # python 3.10 is not available on conda yet |
23 | | - # (PY310, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}}, |
| 22 | + (PY312, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}}, |
| 23 | + (PY311, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}}, |
| 24 | + (PY310, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}}, |
24 | 25 | # python 3.9 - put first to detect easy issues faster. |
25 | 26 | (PY39, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}}, |
26 | 27 | (PY39, "pytest6.x"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": "<7"}}, |
|
0 commit comments