Skip to content

Commit

Permalink
Merge branch '0.11.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
imcdo committed Jan 23, 2023
2 parents 7dce141 + dca0686 commit 64c99d6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -97,6 +97,7 @@ venv/
ENV/
env.bak/
venv.bak/
.virtualenvs/

# Spyder project settings
.spyderproject
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
@@ -1,4 +1,4 @@
Sphinx==1.5.3
Sphinx<1.7
sphinx-argparse==0.1.17
sphinx-rtd-theme==0.2.4
boto3==1.15.9
Expand Down
12 changes: 6 additions & 6 deletions tox.ini
Expand Up @@ -16,28 +16,28 @@ setenv =
PIP_PROCESS_DEPENDENCY_LINKS=1
PIP_DEFAULT_TIMEOUT=60
ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future
envdir = {homedir}/.virtualenvs/ducktape_{envname}
envdir = {package_root}/.virtualenvs/ducktape_{envname}
commands =
pytest {env:PYTESTARGS:} {posargs}

[testenv:py36]
envdir = {homedir}/.virtualenvs/ducktape-py36
envdir = {package_root}/.virtualenvs/ducktape-py36

[testenv:py37]
envdir = {homedir}/.virtualenvs/ducktape-py37
envdir = {package_root}/.virtualenvs/ducktape-py37

[testenv:py38]
envdir = {homedir}/.virtualenvs/ducktape-py38

[testenv:style]
basepython = python3.8
envdir = {homedir}/.virtualenvs/ducktape
envdir = {package_root}/.virtualenvs/ducktape
commands =
flake8 --config tox.ini

[testenv:cover]
basepython = python3.8
envdir = {homedir}/.virtualenvs/ducktape
envdir = {package_root}/.virtualenvs/ducktape
commands =
pytest {env:PYTESTARGS:} --cov ducktape --cov-report=xml --cov-report=html --cov-report=term --cov-report=annotate:textcov \
--cov-fail-under=70
Expand All @@ -51,6 +51,6 @@ commands = sphinx-build -M {env:SPHINX_BUILDER:html} . _build {posargs}


[flake8]
exclude = .git,.tox,.eggs,__pycache__,docs,build,dist
exclude = .git,.tox,.eggs,__pycache__,docs,build,dist,.virtualenvs
ignore = E111,E121,W292,E123,E226,W503
max-line-length = 120

0 comments on commit 64c99d6

Please sign in to comment.