File tree 4 files changed +6
-29
lines changed
4 files changed +6
-29
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,6 @@ cache:
11
11
directories :
12
12
- $HOME/.cache # cython cache
13
13
- $HOME/.ccache # compiler cache
14
- addons :
15
- apt :
16
- packages :
17
- - xvfb
18
14
env :
19
15
global :
20
16
# create a github personal access token
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ if [[ $(uname) == "Linux" && -z $DISPLAY ]]; then
21
21
fi
22
22
23
23
if [ " ${TRAVIS_CPU_ARCH} " == " arm64" ]; then
24
- PYTEST_CMD=" ${XVFB} pytest -m \" $PATTERN \" --durations=10 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas" ;
24
+ PYTEST_CMD=" pytest -m \" $PATTERN \" --durations=10 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas" ;
25
25
else
26
26
PYTEST_CMD=" ${XVFB} pytest -m \" $PATTERN \" -n auto --dist=loadfile -s --strict --durations=10 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas"
27
27
fi
Original file line number Diff line number Diff line change 37
37
fi
38
38
39
39
if [ " ${TRAVIS_CPU_ARCH} " == " arm64" ]; then
40
- wget -q " https://github.com/conda-forge/miniforge/releases/download/4.8.2-1/Miniforge3-4.8.2-1-Linux-aarch64.sh" -O miniconda.sh ;
40
+ CONDA_URL= " https://github.com/conda-forge/miniforge/releases/download/4.8.2-1/Miniforge3-4.8.2-1-Linux-aarch64.sh" ;
41
41
else
42
- wget -q " https://repo.continuum.io/miniconda/Miniconda3-latest-$CONDA_OS .sh" -O miniconda.sh ;
42
+ CONDA_URL= " https://repo.continuum.io/miniconda/Miniconda3-latest-$CONDA_OS .sh" ;
43
43
fi
44
+ wget -q $CONDA_URL -O miniconda.sh;
44
45
chmod +x miniconda.sh
46
+
47
+ # Installation path is required for ARM64 platform as miniforge script installs in path $HOME/miniforge3.
45
48
./miniconda.sh -b -p $MINICONDA_DIR
46
49
47
50
export PATH=$MINICONDA_DIR /bin:$PATH
You can’t perform that action at this time.
0 commit comments