Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Pin to a Tornado version less than 5.0 to avoid hangs in our tests #6626

Merged
merged 1 commit into from Mar 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions appveyor.yml
Expand Up @@ -41,6 +41,8 @@ install:
- "pip install git+https://github.com/spyder-ide/qtpy.git"
- "conda remove -q -y qtconsole"
- "pip install git+https://github.com/jupyter/qtconsole.git"
# Run with tornado < 5.0 to avoid hangs
- "conda install tornado=4.5.3"

build: false

Expand Down
5 changes: 4 additions & 1 deletion continuous_integration/travis/install.sh
Expand Up @@ -31,6 +31,9 @@ if [ "$TRAVIS_PYTHON_VERSION" = "3.5" ] && [ "$USE_PYQT" = "pyqt5" ]; then
# Install Spyder and its dependencies
pip install -q -e .[test]

# Run with tornado < 5.0 for now
# Run with tornado < 5.0 to avoid hangs
pip install tornado==4.5.3
else
# Run with tornado < 5.0 to avoid hangs
conda install tornado=4.5.3
fi