-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing: Simplify Circle testing and move coveralls to Travis
- Loading branch information
1 parent
a450dae
commit 334ab63
Showing
5 changed files
with
28 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
export CONDA_DEPENDENCIES_FLAGS="--quiet" | ||
export CONDA_DEPENDENCIES="rope pyflakes sphinx pygments pylint psutil nbconvert \ | ||
qtawesome pickleshare qtpy pyzmq chardet mock nomkl pandas \ | ||
pytest pytest-cov numpydoc scipy cython pillow" | ||
export PIP_DEPENDENCIES="coveralls pytest-qt pytest-xvfb flaky jedi pycodestyle" | ||
|
||
# Download and install miniconda and conda/pip dependencies | ||
# with astropy helpers | ||
export PY_VERSIONS=($PY_VERSIONS) | ||
export TRAVIS_PYTHON_VERSION=${PY_VERSIONS[$CIRCLE_NODE_INDEX]} | ||
|
||
echo -e "PYTHON = $TRAVIS_PYTHON_VERSION \n============" | ||
git clone git://github.com/astropy/ci-helpers.git > /dev/null | ||
source ci-helpers/travis/setup_conda_$TRAVIS_OS_NAME.sh | ||
export PATH="$HOME/miniconda/bin:$PATH" | ||
source activate test | ||
|
||
# Install ciocheck (not working right now) | ||
#conda install -q ciocheck -c spyder-ide --no-update-deps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.