diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 18:23:21 -0500 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 18:23:21 -0500 |
| commit | 4d4d0c4a8225b68765043159043097dfabf642c0 (patch) | |
| tree | 4a706337cb77717584f390752fd1e6870c103808 /noxfile.py | |
| parent | 9da7398193702615344a113d93dda1314db53eb1 (diff) | |
| download | cmd2-git-4d4d0c4a8225b68765043159043097dfabf642c0.tar.gz | |
Only run a single nox session for each version of Python in GitHub Actions matrix
Also:
- Temporarily disable dependency caching in GitHub Actions
- For Azure Pipelines MacOs testing, add Python 3.9 and remove 3.5
Diffstat (limited to 'noxfile.py')
| -rw-r--r-- | noxfile.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ import nox -@nox.session(python=['3.7']) +@nox.session(python=['3.9']) def docs(session): session.install('sphinx', 'sphinx-rtd-theme', @@ -15,7 +15,7 @@ def docs(session): '-d', '{}/doctrees'.format(tmpdir), '.', '{}/html'.format(tmpdir)) -@nox.session(python=['3.5.2', '3.5.3', '3.5', '3.6', '3.7', '3.8', '3.9']) +@nox.session(python=['3.6', '3.7', '3.8', '3.9', '3.10-dev']) @nox.parametrize('plugin', [None, 'ext_test', 'template', |
