We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cc5b67 commit ed7c526Copy full SHA for ed7c526
ci/install_test.sh
ci/install_travis.sh
@@ -131,8 +131,13 @@ fi
131
132
if [ "$BUILD_TEST" ]; then
133
134
- # build testing
135
- python setup.py install || exit 1
+ # build & install testing
+ echo ["Starting installation test."]
136
+ python setup.py clean
137
+ python setup.py build_ext --inplace
138
+ python setup.py sdist --formats=gztar
139
+ conda uninstall cython
140
+ pip install dist/*tar.gz || exit 1
141
142
else
143
0 commit comments