Skip to content

Commit de2b2ad

Browse files
author
Sylvain MARIE
committed
Explicit requirement for pytest version >= 4.3.0. should fix travis build
1 parent 5a1320c commit de2b2ad

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ci_tools/requirements-pip.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ makefun
1010
decopatch
1111

1212
# --- to run the tests
13-
pytest #$PYTEST_VERSION
13+
pytest>=4.3.0 # for ignore-glob
1414
pytest-logging # ==2015.11.4
1515
# only on python 3+ :
1616
# enforce

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
INSTALL_REQUIRES = ['makefun', 'six', 'future;python_version<"3.3"', 'funcsigs;python_version<"3.3"', 'decopatch'] # 'typing_inspect' is now copied internally so as to be compliant with very old versions of typing module
1515
DEPENDENCY_LINKS = []
1616
SETUP_REQUIRES = ['pytest-runner', 'setuptools_scm', 'pypandoc', 'pandoc', 'enum34;python_version<"3.4"', 'six']
17-
TESTS_REQUIRE = ['pytest', 'pytest-logging', 'pytest-cov', 'enforce', 'mini_lambda', 'attrs', 'numpy', 'autoclass',
18-
'checktypes', 'pytest-cases']
17+
TESTS_REQUIRE = ['pytest>=4.3.0', 'pytest-logging', 'pytest-cov', 'enforce', 'mini_lambda', 'attrs', 'numpy',
18+
'autoclass', 'checktypes', 'pytest-cases']
1919
EXTRAS_REQUIRE = {}
2020

2121
# simple check

0 commit comments

Comments
 (0)