File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 53
53
file_handler.write('TOXENV=' + ("py" if impl == "CPython" else "pypy") + ("{}{}".format(major, minor) if impl == "CPython" else "3") + "\n")
54
54
shell : python
55
55
- name : Setup test suite
56
- run : tox4 r -vv --notest
56
+ run : tox r -vv --notest
57
57
- name : Run test suite
58
- run : tox4 r --skip-pkg-install
58
+ run : tox r --skip-pkg-install
59
59
env :
60
60
PYTEST_ADDOPTS : " -vv --durations=20"
61
61
CI_RUN : " yes"
97
97
- name : Install self-tox
98
98
run : python -m pip install .
99
99
- name : Run check for ${{ matrix.tox_env }}
100
- run : tox4 r -e ${{ matrix.tox_env }}
100
+ run : tox r -e ${{ matrix.tox_env }}
101
101
env :
102
102
UPGRADE_ADVISORY : " yes"
103
103
Original file line number Diff line number Diff line change 9
9
dist
10
10
* .egg-info
11
11
.tox
12
- .tox4
13
12
/. * _cache
14
13
.dmypy.json
15
14
/docs /_draft.rst
Original file line number Diff line number Diff line change
1
+ Use ``tox `` console entry point name instead of ``tox4 `` - by :user: `gaborbernat `.
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ where = src
56
56
57
57
[options.entry_points]
58
58
console_scripts =
59
- tox4 = tox.run:run
59
+ tox = tox.run:run
60
60
61
61
[options.extras_require]
62
62
docs =
Original file line number Diff line number Diff line change @@ -12,4 +12,4 @@ def test_call_as_module(empty_project: ToxProject) -> None: # noqa: U100
12
12
13
13
14
14
def test_call_as_exe (empty_project : ToxProject ) -> None : # noqa: U100
15
- subprocess .check_output ([str (Path (sys .executable ).parent / "tox4 " ), "-h" ])
15
+ subprocess .check_output ([str (Path (sys .executable ).parent / "tox " ), "-h" ])
You can’t perform that action at this time.
0 commit comments