Skip to content

Commit

Permalink
Revert "First attempt at tomlifying tox (#173)"
Browse files Browse the repository at this point in the history
This reverts commit b6f3b8b.
  • Loading branch information
paddyroddy authored Oct 1, 2024
1 parent e62abed commit d4b442e
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -140,17 +140,6 @@ overrides."tool.coverage.paths.source".inline_arrays = false
overrides."tool.ruff.lint.isort.section-order".inline_arrays = false

[tool.tox]
env_list = [
"py310-linux",
"py310-macos",
"py310-windows",
"py311-linux",
"py311-macos",
"py311-windows",
"py312-linux",
"py312-macos",
"py312-windows",
]
legacy_tox_ini = """
[gh-actions]
python =
Expand All @@ -163,9 +152,13 @@ legacy_tox_ini = """
ubuntu-latest: linux
macos-latest: macos
windows-latest: windows
[testenv]
commands =
pytest --cov --cov-report=lcov
deps =
pytest-cov
[tox]
env_list = py{310,311,312}-{linux,macos,windows}
"""
env.testenv = {commands = [
"pytest --cov --cov-report=lcov",
], deps = [
"pytest-cov",
]}

0 comments on commit d4b442e

Please sign in to comment.