Skip to content

Commit 5ddb22a

Browse files
committed
chore: fix tox error re: pytest-rerunfailures
1 parent 33c61a9 commit 5ddb22a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ responses>=0.10
55
python_dotenv>=0.1.5
66
pylint>=1.4.4
77
tox>=2.9.1
8-
pytest-rerunfailures>=3.1
98
couchdb>=1.2
109

1110
# code coverage

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
envlist = lint, py35, py36, py37, py38
33

44
[testenv:lint]
5-
basepython = python3.8
5+
basepython = python3.7
66
deps = pylint
7-
commands = python -m pylint --rcfile=.pylintrc ibm_platform_services test/unit test/integration examples
7+
commands = pylint --rcfile=.pylintrc ibm_platform_services test
88

99
[testenv]
1010
passenv = TOXENV CI TRAVIS*
1111
commands =
12-
python -m pytest --reruns 2 --cov=ibm_platform_services {posargs} test/unit
12+
py.test --cov=ibm_platform_services {posargs} test/unit
1313
codecov -e TOXENV
1414
deps =
1515
-r{toxinidir}/requirements.txt

0 commit comments

Comments
 (0)