mirror of
https://github.com/borgbackup/borg.git
synced 2025-01-31 11:42:05 +00:00
fix tox4 passenv issue, fixes #7199
also: have a setting to disable fail-fast, in case something breaks again.
This commit is contained in:
parent
79b6c985a1
commit
e66d8c399b
2 changed files with 5 additions and 0 deletions
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -49,6 +49,7 @@ jobs:
|
||||||
|
|
||||||
needs: lint
|
needs: lint
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
|
|
4
tox.ini
4
tox.ini
|
@ -22,6 +22,10 @@ commands = py.test -v -n {env:XDISTN:1} -rs --cov=borg --cov-config=.coveragerc
|
||||||
passenv = *
|
passenv = *
|
||||||
|
|
||||||
|
|
||||||
|
[testenv:.pkg]
|
||||||
|
passenv = * # needed by tox4, so env vars are visible for building borg
|
||||||
|
|
||||||
|
|
||||||
[testenv:flake8]
|
[testenv:flake8]
|
||||||
skip_sdist=true
|
skip_sdist=true
|
||||||
skip_install=true
|
skip_install=true
|
||||||
|
|
Loading…
Reference in a new issue