Skip to content

Commit 2ade3d5

Browse files
committed
ci: rename "trial" tox factor to "twisted"
Ref: #4848 (comment)
1 parent 714f211 commit 2ade3d5

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
# Specialized factors for py37.
6969
# Coverage for:
7070
# - test_sys_breakpoint_interception (via pexpect).
71-
- env: TOXENV=py37-pexpect,py37-trial PYTEST_COVERAGE=1
71+
- env: TOXENV=py37-pexpect,py37-twisted PYTEST_COVERAGE=1
7272
- env: TOXENV=py37-pluggymaster-xdist
7373
- env: TOXENV=py37-freeze
7474

@@ -80,7 +80,7 @@ jobs:
8080
- stage: baseline
8181
# Coverage for:
8282
# - _pytest.unittest._handle_skip (via pexpect).
83-
env: TOXENV=py27-pexpect,py27-trial PYTEST_COVERAGE=1
83+
env: TOXENV=py27-pexpect,py27-twisted PYTEST_COVERAGE=1
8484
python: '2.7'
8585
# Use py36 here for faster baseline.
8686
- env: TOXENV=py36-xdist

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ jobs:
3030
# - numpy
3131
# - pytester's LsofFdLeakChecker (being skipped)
3232
PYTEST_COVERAGE: '1'
33-
py27-trial:
33+
py27-twisted:
3434
python.version: '2.7'
35-
tox.env: 'py27-trial'
35+
tox.env: 'py27-twisted'
3636
python.needs_vc: True
3737
py27-pluggymaster-xdist:
3838
python.version: '2.7'
3939
tox.env: 'py27-pluggymaster-xdist'
4040
# Coverage for:
4141
# - except-IOError in _attempt_to_close_capture_file for py2.
4242
# Also seen with py27-nobyte (using xdist), and py27-xdist.
43-
# But no exception with py27-pexpect,py27-trial,py27-numpy.
43+
# But no exception with py27-pexpect,py27-twisted,py27-numpy.
4444
PYTEST_COVERAGE: '1'
4545
pypy:
4646
python.version: 'pypy'
@@ -76,9 +76,9 @@ jobs:
7676
py37-linting/docs/doctesting:
7777
python.version: '3.7'
7878
tox.env: 'linting,docs,doctesting'
79-
py37-trial/numpy:
79+
py37-twisted/numpy:
8080
python.version: '3.7'
81-
tox.env: 'py37-trial,py37-numpy'
81+
tox.env: 'py37-twisted,py37-numpy'
8282
py37-pluggymaster-xdist:
8383
python.version: '3.7'
8484
tox.env: 'py37-pluggymaster-xdist'

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ envlist =
1313
py38
1414
pypy
1515
pypy3
16-
{py27,py37}-{pexpect,xdist,trial,numpy,pluggymaster}
16+
{py27,py37}-{pexpect,xdist,twisted,numpy,pluggymaster}
1717
py27-nobyte-xdist
1818
doctesting
1919
py37-freeze
@@ -67,17 +67,17 @@ basepython = python3
6767
deps = pre-commit>=1.11.0
6868
commands = pre-commit run --all-files --show-diff-on-failure
6969

70-
[testenv:py27-trial]
70+
[testenv:py27-twisted]
7171
deps =
7272
{[testenv]deps}
7373
twisted
7474
unittest2
7575
commands =
7676
{env:_PYTEST_TOX_COVERAGE_RUN:} pytest {posargs:testing/test_unittest.py}
7777

78-
[testenv:py37-trial]
79-
deps = {[testenv:py27-trial]deps}
80-
commands = {[testenv:py27-trial]commands}
78+
[testenv:py37-twisted]
79+
deps = {[testenv:py27-twisted]deps}
80+
commands = {[testenv:py27-twisted]commands}
8181

8282
[testenv:docs]
8383
basepython = python3

0 commit comments

Comments
 (0)