|
9 | 9 | # add parent folder to python path so that we can import noxfile_utils.py |
10 | 10 | # note that you need to "pip install -r noxfile-requiterements.txt" for this file to work. |
11 | 11 | sys.path.append(str(Path(__file__).parent / "ci_tools")) |
12 | | -from nox_utils import (PY27, PY37, PY36, PY35, PY38, PY39, PY310, PY311, PY312, install_reqs, rm_folder, rm_file, |
| 12 | +from nox_utils import (PY27, PY37, PY36, PY38, PY39, PY310, PY311, PY312, install_reqs, rm_folder, rm_file, |
13 | 13 | DONT_INSTALL) # noqa |
14 | 14 |
|
15 | 15 |
|
@@ -60,7 +60,6 @@ class Folders: |
60 | 60 | PY39: {"coverage": False, "pkg_specs": {"pip": ">19"}}, |
61 | 61 | PY38: {"coverage": False, "pkg_specs": {"pip": ">19"}}, |
62 | 62 | PY27: {"coverage": False, "pkg_specs": {"pip": ">10"}}, |
63 | | - PY35: {"coverage": False, "pkg_specs": {"pip": ">10"}}, |
64 | 63 | PY36: {"coverage": False, "pkg_specs": {"pip": ">19"}}, |
65 | 64 | # IMPORTANT: this should be last so that the folder docs/reports is not deleted afterwards |
66 | 65 | PY37: {"coverage": True, "pkg_specs": {"pip": ">19"}}, # , "pytest-html": "1.9.0" |
@@ -285,6 +284,8 @@ def gha_list(session): |
285 | 284 | out = session.run("nox", "-l", "--json", "-s", "tests", external=True, silent=True) |
286 | 285 | sessions_list = [{"python": s["python"], "session": s["session"]} for s in json.loads(out)] |
287 | 286 |
|
| 287 | + # TODO filter |
| 288 | + |
288 | 289 | # print the list so that it can be caught by GHA. |
289 | 290 | # Note that json.dumps is optional since this is a list of string. |
290 | 291 | # However it is to remind us that GHA expects a well-formatted json list of strings. |
|
0 commit comments