Skip to content

Commit 7e98210

Browse files
authored
Merge branch 'master' into fix/py39
2 parents bcd16ad + 5691f90 commit 7e98210

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/tox.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ on:
44
create: # is used for publishing to PyPI and TestPyPI
55
tags: # any tag regardless of its name, no branches
66
push: # only publishes pushes to the main branch to TestPyPI
7-
branches: # any branch but not tag
8-
- >-
9-
**
7+
branches: # any maintenance branch but not tag
8+
# avoid generic ** as it duplicates builds from temporary branches
9+
- "master"
10+
- "stable/**"
1011
tags-ignore:
1112
- >-
1213
**
@@ -29,6 +30,8 @@ jobs:
2930
python-version: 3.8
3031
- name: py39
3132
python-version: 3.9
33+
- name: devel
34+
python-version: 3.8
3235
- name: pypy3
3336
python-version: pypy3
3437
steps:

tox.ini

+5-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ basepython = python3
2727
pip_pre = True
2828
deps =
2929
{[testenv]deps}
30-
pytest @ git+https://github.com/pytest-dev/pytest.git
30+
ansi2html @ git+https://github.com/pycontribs/ansi2html.git
31+
pytest-rerunfailures @ git+https://github.com/pytest-dev/pytest-rerunfailures.git
32+
# Temporary disable pytest git install due to
33+
# https://github.com/pytest-dev/pytest-rerunfailures/issues/134
34+
# pytest @ git+https://github.com/pytest-dev/pytest.git
3135

3236
[flake8]
3337
max-line-length = 88

0 commit comments

Comments
 (0)