File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 4
4
create : # is used for publishing to PyPI and TestPyPI
5
5
tags : # any tag regardless of its name, no branches
6
6
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/**"
10
11
tags-ignore :
11
12
- >-
12
13
**
29
30
python-version : 3.8
30
31
- name : py39
31
32
python-version : 3.9
33
+ - name : devel
34
+ python-version : 3.8
32
35
- name : pypy3
33
36
python-version : pypy3
34
37
steps :
Original file line number Diff line number Diff line change @@ -27,7 +27,11 @@ basepython = python3
27
27
pip_pre = True
28
28
deps =
29
29
{[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
31
35
32
36
[flake8]
33
37
max-line-length = 88
You can’t perform that action at this time.
0 commit comments