Skip to content

Commit 9c5597e

Browse files
committed
Move dependencpies installation after wheel bulding.
1 parent 39ba916 commit 9c5597e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: continuous_integration/travis/install.sh

-3
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ install_pip()
6262
{
6363
# Install PyQt5
6464
pip install pyqt5;
65-
66-
# Install testing packages
67-
pip install -e .[test]
6865
}
6966

7067

Diff for: continuous_integration/travis/run_test.sh

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ if [ "$USE_CONDA" = true ] ; then
2626
else
2727
cd $FULL_SPYDER_CLONE
2828
pip install dist/spyder-*.whl
29+
30+
# Install testing packages
31+
pip install -e .[test]
2932
fi
3033

3134

0 commit comments

Comments
 (0)