From 516a0c1b9cbd3f47bbc3c05428554207a0c1ed36 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Thu, 21 Dec 2023 16:05:21 -0800 Subject: [PATCH] correct line separator --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index af07d6a7139b0..90afb1ce29684 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,19 +25,19 @@ jobs: steps: # Install pkgs first to have git in the image # (needed for checkout) - - run: > + - run: | apk update apk add git apk add musl-locales - checkout - - run: > + - run: | /opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev . ~/virtualenvs/pandas-dev/bin/activate python -m pip install --no-cache-dir -U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.2.1 python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=2.2.0 hypothesis>=6.46.1 python -m pip install --no-cache-dir --no-build-isolation -e . --config-settings=setup-args="--werror" python -m pip list --no-cache-dir - - run: > + - run: | . ~/virtualenvs/pandas-dev/bin/activate export PANDAS_CI=1 python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml