Skip to content

Commit f2eaad4

Browse files
committed
Add API function for using cleanly as a library #39
Signed-off-by: Tushar Goel <[email protected]>
1 parent 1e7cf2b commit f2eaad4

30 files changed

+13468
-2838
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ Changelog
22
=========
33

44

5+
v0.9.0
6+
------
7+
8+
- Add API function for using cleanly as a library.
9+
10+
511
v0.8.4
612
------
713

azure-pipelines.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,44 +14,44 @@ jobs:
1414
python_versions: ['3.8', '3.9', '3.10']
1515
test_suites:
1616
all: |
17-
venv/bin/pytest -n 2 -vvs
17+
venv/bin/pytest -n 2 -vvs --reruns 2
1818
1919
- template: etc/ci/azure-posix.yml
2020
parameters:
2121
job_name: ubuntu20_cpython
2222
image_name: ubuntu-20.04
2323
python_versions: ['3.8', '3.9', '3.10']
2424
test_suites:
25-
all: venv/bin/pytest -n 2 -vvs
25+
all: venv/bin/pytest -n 2 -vvs --reruns 2
2626

2727
- template: etc/ci/azure-posix.yml
2828
parameters:
2929
job_name: macos12_cpython
3030
image_name: macos-12
3131
python_versions: ['3.8', '3.9', '3.10']
3232
test_suites:
33-
all: venv/bin/pytest -n 2 -vvs
33+
all: venv/bin/pytest -n 2 -vvs --reruns 2
3434

3535
- template: etc/ci/azure-posix.yml
3636
parameters:
3737
job_name: macos11_cpython
3838
image_name: macos-11
3939
python_versions: ['3.8', '3.9', '3.10']
4040
test_suites:
41-
all: venv/bin/pytest -n 2 -vvs
41+
all: venv/bin/pytest -n 2 -vvs --reruns 2
4242

4343
- template: etc/ci/azure-win.yml
4444
parameters:
4545
job_name: win2019_cpython
4646
image_name: windows-2019
4747
python_versions: ['3.8', '3.9', '3.10']
4848
test_suites:
49-
all: venv\Scripts\pytest -n 2 -vvs
49+
all: venv\Scripts\pytest -n 2 -vvs --reruns 2
5050

5151
- template: etc/ci/azure-win.yml
5252
parameters:
5353
job_name: win2022_cpython
5454
image_name: windows-2022
5555
python_versions: ['3.8', '3.9', '3.10']
5656
test_suites:
57-
all: venv\Scripts\pytest -n 2 -vvs
57+
all: venv\Scripts\pytest -n 2 -vvs --reruns 2

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ testing =
8686
black
8787
isort
8888
pycodestyle
89+
pytest-rerunfailures
8990

9091
docs =
9192
Sphinx >= 3.3.1

0 commit comments

Comments
 (0)