summaryrefslogtreecommitdiff
path: root/.zuul.yaml
diff options
context:
space:
mode:
authorClark Boylan <clark.boylan@gmail.com>2023-01-24 10:13:35 -0800
committerClark Boylan <clark.boylan@gmail.com>2023-03-13 10:19:07 -0700
commit12a0aca425ead764d722ae23f5a12ae2ec0b4a3f (patch)
tree3bd0721515d7ca47c91179a77b541c9acdbdbfab /.zuul.yaml
parentf02b41df74e9ed674a879fdcedd16108a3f269da (diff)
downloadgit-review-12a0aca425ead764d722ae23f5a12ae2ec0b4a3f.tar.gz
Switch from tox to nox
Recent tox releases have put us on a config treadmill. Avoid these issues entirely by using nox. Nox is a tox alternative that uses standard tools like pip and should be simpler to use for us. Change-Id: Ie79845bbed7ca1254aec466bd5219186fefcdac9
Diffstat (limited to '.zuul.yaml')
-rw-r--r--.zuul.yaml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.zuul.yaml b/.zuul.yaml
index b487336..7a5a062 100644
--- a/.zuul.yaml
+++ b/.zuul.yaml
@@ -2,18 +2,18 @@
vars:
release_python: python3
templates:
- - publish-opendev-tox-docs
+ - publish-opendev-nox-docs
check:
jobs: &jobs
- build-python-release
- - tox-linters
- - tox-py36:
+ - nox-linters
+ - nox-py36:
nodeset: ubuntu-bionic
- - tox-py37:
+ - nox-py37:
nodeset: ubuntu-bionic
- - tox-py38:
+ - nox-py38:
nodeset: ubuntu-focal
- - tox-py39:
+ - nox-py39:
nodeset: ubuntu-focal
gate:
jobs: *jobs
@@ -23,4 +23,4 @@
release:
jobs:
- opendev-release-python
- - opendev-publish-unversioned-tox-docs
+ - opendev-publish-unversioned-nox-docs