summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDiego Ramirez <dr01191115@gmail.com>2021-11-29 09:29:14 -0600
committerDiego Ramirez <dr01191115@gmail.com>2021-11-29 09:29:14 -0600
commit7ced6c583bb7739628fd78d7bdece3ed4ce25303 (patch)
treebb2f917bf26069fd2cc9e0dcda46df8c5976129b /.github
parent5c916121a92202cb8be16ffa0db83774fe271606 (diff)
downloadpip-7ced6c583bb7739628fd78d7bdece3ed4ce25303.tar.gz
Replace tox with Nox (CLI, docs)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6d3f70fca..e9885a499 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -121,17 +121,17 @@ jobs:
if: matrix.os == 'MacOS'
run: brew install bzr
- - run: pip install tox 'virtualenv<20'
+ - run: pip install nox 'virtualenv<20'
# Main check
- name: Run unit tests
run: >-
- tox -e py --
+ nox -s test-${{ matrix.python }} --
-m unit
--verbose --numprocesses auto --showlocals
- name: Run integration tests
run: >-
- tox -e py --
+ nox -s test-${{ matrix.python }} --
-m integration
--verbose --numprocesses auto --showlocals
--durations=5
@@ -178,7 +178,7 @@ jobs:
$acl.AddAccessRule($rule)
Set-Acl "R:\Temp" $acl
- - run: pip install tox 'virtualenv<20'
+ - run: pip install nox 'virtualenv<20'
env:
TEMP: "R:\\Temp"
@@ -186,7 +186,7 @@ jobs:
- name: Run unit tests
if: matrix.group == 1
run: >-
- tox -e py --
+ nox -s test-${{ matrix.python }} --
-m unit
--verbose --numprocesses auto --showlocals
env:
@@ -195,7 +195,7 @@ jobs:
- name: Run integration tests (group 1)
if: matrix.group == 1
run: >-
- tox -e py --
+ nox -s test-${{ matrix.python }} --
-m integration -k "not test_install"
--verbose --numprocesses auto --showlocals
env:
@@ -204,7 +204,7 @@ jobs:
- name: Run integration tests (group 2)
if: matrix.group == 2
run: >-
- tox -e py --
+ nox -s test-${{ matrix.python }} --
-m integration -k "test_install"
--verbose --numprocesses auto --showlocals
env: