Skip to content

Commit

Permalink
disable coverage on py311 for now (#7165)
Browse files Browse the repository at this point in the history
  • Loading branch information
reaperhulk committed Apr 30, 2022
1 parent 3af69bd commit 0f92975
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- {VERSION: "3.10", TOXENV: "py310", OPENSSL: {TYPE: "libressl", VERSION: "3.3.6"}}
- {VERSION: "3.10", TOXENV: "py310", OPENSSL: {TYPE: "libressl", VERSION: "3.4.3"}}
- {VERSION: "3.10", TOXENV: "py310", OPENSSL: {TYPE: "libressl", VERSION: "3.5.2"}}
- {VERSION: "3.11-dev", TOXENV: "py311"}
- {VERSION: "3.11-dev", TOXENV: "py311-nocoverage", COVERAGE: "false"}
- {VERSION: "3.10", TOXENV: "py310-randomorder"}
# Latest commit on the master branch, as of April 29, 2022.
- {VERSION: "3.10", TOXENV: "py310", OPENSSL: {TYPE: "boringssl", VERSION: "8b988b8b8d8f274a0f400606701df696817ab42e"}}
Expand Down
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ commands =
pip list
pytest -n auto --durations=10 {posargs} tests/

[testenv:py311-nocoverage]
basepython = python3
commands =
pip list
pytest -n auto --durations=10 {posargs} tests/

[testenv:docs]
extras =
docs
Expand Down

0 comments on commit 0f92975

Please sign in to comment.