Skip to content

Commit

Permalink
Switched from Archiconda to Miniforge
Browse files Browse the repository at this point in the history
  • Loading branch information
ossdev07 committed Mar 11, 2020
1 parent 9cf01fa commit 5f498d5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ cache:
directories:
- $HOME/.cache # cython cache
- $HOME/.ccache # compiler cache

env:
global:
# create a github personal access token
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: pandas-dev
channels:
- defaults
- conda-forge
- c3i_test
dependencies:
- python=3.7.*

Expand Down
6 changes: 1 addition & 5 deletions ci/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,7 @@ if [[ $(uname) == "Linux" && -z $DISPLAY ]]; then
XVFB="xvfb-run "
fi

if [ "${TRAVIS_CPU_ARCH}" == "arm64" ]; then
PYTEST_CMD="pytest -m \"$PATTERN\" --durations=10 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas";
else
PYTEST_CMD="${XVFB}pytest -m \"$PATTERN\" -n auto --dist=loadfile -s --strict --durations=10 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas"
fi
PYTEST_CMD="${XVFB}pytest -m \"$PATTERN\" -n auto --dist=loadfile -s --strict --durations=10 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas"

echo $PYTEST_CMD
sh -c "$PYTEST_CMD"
Expand Down
1 change: 1 addition & 0 deletions ci/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ else
fi

if [ "${TRAVIS_CPU_ARCH}" == "arm64" ]; then
apt-get update && apt-get install xvfb;
CONDA_URL="https://github.com/conda-forge/miniforge/releases/download/4.8.2-1/Miniforge3-4.8.2-1-Linux-aarch64.sh";
else
CONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-$CONDA_OS.sh";
Expand Down

0 comments on commit 5f498d5

Please sign in to comment.