Commit 29f8057f authored by Jason Swails's avatar Jason Swails
Browse files

Revert "py.test doesn't like to install with easy_install-ed pip"

This reverts commit 7c0d5aa3.
parent 7c0d5aa3
...@@ -110,7 +110,8 @@ before_install: ...@@ -110,7 +110,8 @@ before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew install fftw; brew install fftw;
brew install -y https://raw.githubusercontent.com/Homebrew/homebrew-core/5b680fb58fedfb00cd07a7f69f5a621bb9240f3b/Formula/doxygen.rb; brew install -y https://raw.githubusercontent.com/Homebrew/homebrew-core/5b680fb58fedfb00cd07a7f69f5a621bb9240f3b/Formula/doxygen.rb;
sudo easy_install nose; sudo easy_install pip;
sudo pip install pytest;
fi fi
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then - if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
CMAKE_URL="http://cmake.org/files/v3.7/cmake-3.7.2-Linux-x86_64.tar.gz"; CMAKE_URL="http://cmake.org/files/v3.7/cmake-3.7.2-Linux-x86_64.tar.gz";
...@@ -170,13 +171,11 @@ script: ...@@ -170,13 +171,11 @@ script:
- if [[ "$OPENCL" == "false" && "$CUDA" == "false" ]]; then - if [[ "$OPENCL" == "false" && "$CUDA" == "false" ]]; then
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
sudo make PythonInstall; sudo make PythonInstall;
python -m simtk.testInstallation;
(cd python/tests && nosetests -v);
else else
make PythonInstall; make PythonInstall;
fi;
python -m simtk.testInstallation; python -m simtk.testInstallation;
(cd python/tests && py.test -v); (cd python/tests && py.test -v);
fi;
fi fi
# Run the tests, and rerun any failing tests. # Run the tests, and rerun any failing tests.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment