Skip to content

Commit

Permalink
Running tox errors
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanIsCoding committed Sep 2, 2023
1 parent 5dd0a7d commit 9c8fd28
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,33 @@ exclude = [
"doc",
"*egg",
"build"
]
]

[tool.tox]
legacy_tox_ini = """
[tox]
minversion = 4.4.0
envlist = py38, py39, py310, py311, lint
isolated_build = true
[testenv]
skip_install = true
commands = python -c "import sys; print('rustworkx no longer supports tox. Please run the equivalent comand with nox: nox -epy'); sys.exit(1)"
[testenv:lint]
skip_install = true
commands = python -c "import sys; print('rustworkx no longer supports tox. Please run the equivalent comand with nox: nox -elint'); sys.exit(1)"
[testenv:docs]
skip_install = true
commands = python -c "import sys; print('rustworkx no longer supports tox. Please run the equivalent comand with nox: nox -edocs'); sys.exit(1)"
[testenv:black]
skip_install = true
commands = python -c "import sys; print('rustworkx no longer supports tox. Please run the equivalent comand with nox: nox -eblack'); sys.exit(1)"
[testenv:stubs]
skip_install = true
commands = python -c "import sys; print('rustworkx no longer supports tox. Please run the equivalent comand with nox: nox -estubs'); sys.exit(1)"
"""

0 comments on commit 9c8fd28

Please sign in to comment.