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