fix 2nd install test
This commit is contained in:
parent
4b3e3ee04a
commit
e2b02fbcbd
@ -130,7 +130,7 @@ script:
|
|||||||
|
|
||||||
# check line endings
|
# check line endings
|
||||||
- if [ "${TEST}" == "extra" ]; then
|
- if [ "${TEST}" == "extra" ]; then
|
||||||
! find ./ -name "*.py" | xargs file | grep CRLF;
|
! find ./ -name "*.py" | xargs file | grep CRLF &&
|
||||||
! find ./ -name "*.rst" | xargs file | grep CRLF;
|
! find ./ -name "*.rst" | xargs file | grep CRLF;
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
@ -143,7 +143,8 @@ script:
|
|||||||
- sudo python setup.py --quiet install
|
- sudo python setup.py --quiet install
|
||||||
|
|
||||||
# Check double-install fails
|
# Check double-install fails
|
||||||
- ! sudo python setup.py --quiet install
|
# Note the bash -c is because travis strips off the ! otherwise.
|
||||||
|
- bash -c "! sudo python setup.py --quiet install"
|
||||||
|
|
||||||
# Check we can import pg
|
# Check we can import pg
|
||||||
- cd /; echo "import pyqtgraph.examples" | python
|
- cd /; echo "import pyqtgraph.examples" | python
|
||||||
|
Loading…
Reference in New Issue
Block a user