You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export PYTHONPATH=`python -c "import sys; print('python2' if sys.version.startswith('2') else 'src')"`;
55
+
if [[ $PYTHON_VERSION < '3.7' ]]; then py.test $PYTHONPATH; fi
56
+
if [[ $PYTHON_VERSION < '3.5' ]]; then pip install -U .; fi
57
+
export PYTHONPATH=`python -c "import sys; print('typing_extensions/src_py2' if sys.version.startswith('2') else 'typing_extensions/src_py3')"`;
58
+
py.test $PYTHONPATH;
59
+
if [[ $PYTHON_VERSION == '3.8' ]]; then flake8; fi
60
+
if [[ $PYTHON_VERSION == '3.8' ]]; then flake8 --config=.flake8-tests src/test_typing.py python2/test_typing.py typing_extensions/src_py2/test_typing_extensions.py typing_extensions/src_py3/test_typing_extensions.py; fi
0 commit comments