File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,11 +37,11 @@ jobs:
37
37
PYTHON_VERSION : ${{ matrix.python-version }}
38
38
run : |
39
39
export PYTHONPATH=`python -c "import sys; print('python2' if sys.version.startswith('2') else 'src')"`
40
- if [[ $PYTHON_VERSION < '3.7' ]]; then py.test $PYTHONPATH; fi
40
+ if [[ $PYTHON_VERSION < '3.7' ]]; then pytest $PYTHONPATH; fi
41
41
42
42
if [[ $PYTHON_VERSION < '3.5' ]]; then pip install -U .; fi
43
43
export PYTHONPATH=`python -c "import sys; print('typing_extensions/src_py2' if sys.version.startswith('2') else 'typing_extensions/src_py3')"`
44
- py.test $PYTHONPATH
44
+ pytest $PYTHONPATH
45
45
46
46
linting :
47
47
name : Run linting
Original file line number Diff line number Diff line change 1
1
flake8; python_version >= '3.6'
2
2
flake8-bugbear; python_version >= '3.6'
3
3
flake8-pyi; python_version >= '3.6'
4
- pytest>=4.4.1; python_version >= '3.4'
4
+ pytest==4.6.11
5
5
pytest-xdist>=1.18; python_version >= '3.4'
6
6
pytest-cov>=2.4.0; python_version >= '3.4'
You can’t perform that action at this time.
0 commit comments